This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
haas:fall2022:data:projects:sll1 [2021/09/08 17:54] – created - external edit 127.0.0.1 | haas:fall2022:data:projects:sll1 [2022/09/12 12:52] (current) – [UPGRADING] wedge | ||
---|---|---|---|
Line 4: | Line 4: | ||
</ | </ | ||
- | ======Project: SLL1====== | + | ======PROJECT: Singly-Linked List of Nodes (SLL1)====== |
- | =====Errata===== | + | =====OBJECTIVE===== |
- | This section will document any updates applied | + | To continue |
- | * __revision 1__: DESCRIPTION (DATESTAMP) | + | =====UPGRADING===== |
- | =====Objective===== | + | To assist with consistency across all implementations, project files for use with this project, along with the integration |
- | We've commenced on our list explorations, implementing some of the core functionality (adding nodes to a list through insertion) as well as some helper functionality to make our list transactions even more effective (creating, displaying, getting node positions, and setting node positions). | + | |
- | In this project, we continue our list implementation by exploring the appending of nodes to a list, searching for nodes within a list, copying a list, displaying a list in reverse, and comparing two lists for equality. | + | Simply go into the project |
- | =====Project Overview===== | + | < |
+ | lab46: | ||
+ | </ | ||
- | ====header file==== | + | =====EDIT===== |
- | In **inc/** is the list header file: **list.h** | + | You will want to go [[/notes/ |
- | For this project, we're going to be implementing the following functions: | + | * [[/ |
- | <code c> | + | {{page>notes: |
- | List *append(List *, Node *, Node *); // append new node into list after specified place | + | |
- | Node *searchlist(List *, char); | + | |
- | List *cplist(List *); // duplicate existing list | + | |
- | void displayb(List *, int); // display list backwards | + | |
- | uc compare(List *, List *, ulli *); // compare two lists for equality | + | |
- | </code> | + | |
- | Additionally, the following | + | =====SUBMISSION===== |
+ | To be successful in this project, the following | ||
- | <code c> | + | * Project must be submit on time, by the deadline. |
- | typedef struct list List; // because we deserve nice things | + | * Late submissions will lose 33% credit per day, with the submission window closing on the 3rd day following the deadline. |
- | typedef unsigned long long int ulli; // short name for biggest space | + | * All code must compile cleanly (no warnings or errors) |
- | typedef unsigned char uc; // shorter name for smallest space | + | |
- | </code> | + | |
+ | * Executed programs must display in a manner similar to provided output | ||
+ | * output | ||
+ | * Processing must be correct based on input given and output requested | ||
+ | * Output, if applicable, must be correct based on values input | ||
+ | * Code must be nicely and consistently indented | ||
+ | * Code must be consistently written, to strive | ||
+ | * Code must be commented | ||
+ | * Any "to be implemented" | ||
+ | | ||
+ | * Sufficient | ||
+ | * No global variables (without instructor approval), no goto statements, no calling of main()! | ||
+ | * Track/version the source code in your lab46 semester repository | ||
+ | * Submit | ||
- | and: | + | ====Submit Tool Usage==== |
- | + | Let' | |
- | <code c> | + | submit, you |
- | // return status codes | + | uom0.c): |
- | // | + | |
- | #define CMP_EQUALITY | + | |
- | #define CMP_L1_NULL | + | |
- | #define CMP_L1_EMPTY | + | |
- | #define CMP_L1_UNDEFINED | + | |
- | #define CMP_L1_GREATER | + | |
- | #define CMP_L1_LESS | + | |
- | #define CMP_L2_NULL | + | |
- | #define CMP_L2_EMPTY | + | |
- | #define CMP_L2_UNDEFINED | + | |
- | #define CMP_L2_GREATER | + | |
- | #define CMP_L2_LESS | + | |
- | </ | + | |
- | + | ||
- | As a suggestion, I'd recommend implementing them in the order listed above, starting with **append()** and then **searchlist()**. By doing this, you get to review a bit from the previous weeks before you continue with base functionality, | + | |
- | + | ||
- | An important perspective to keep when implementing these list functions is to be mindful of what functionality can be a unit of something else. Do not reinvent the wheel- utilize functions you've written- it will shorten your code, and reduce the chance of error. Plus, that IS the intent.. to have each function be specific and focused on its particular task; to do one thing, and do that one thing extremely well. We can then use them as base units to build more sophisticated functionality. | + | |
- | + | ||
- | In this project, **append()** can be considered that basic operation, where **cplist()** can be built using **append()** (along with any other list/node functions from this and previous projects). | + | |
- | ====list library==== | + | |
- | In **src/ | + | |
- | + | ||
- | * **append.c** | + | |
- | * **cp.c** | + | |
- | * **search.c** | + | |
- | * **displayb.c** - which will handle displaying the list backwards | + | |
- | * **compare.c** | + | |
- | + | ||
- | Take a look at the code there. These are the files that contain functions which will be compiled and archived into the list library (**liblist.a**) we will be using in this and future projects. | + | |
- | + | ||
- | Figure out what is going on, make sure you understand it. | + | |
- | + | ||
- | **NOTE:** None of these files denote an entire runnable program. These are merely standalone functions. The various programs under the **unit/ | + | |
- | + | ||
- | You will also notice there are function prototypes for these list library functions in the **list.h** header file, located in the **inc/** subdirectory, | + | |
- | + | ||
- | ====List library unit tests==== | + | |
- | In **unit/ | + | |
- | + | ||
- | * **unit-append.c** | + | |
- | * **unit-cplist.c** | + | |
- | * **unit-searchlist.c** - unit test for **searchlist()** library function | + | |
- | * **unit-displayb.c** | + | |
- | * **unit-compare.c** | + | |
- | + | ||
- | These are complete runnable programs (when compiled, and linked against the list library, which is all handled for you by the **Makefile** system in place). | + | |
- | + | ||
- | Of particular importance, I want you to take a close look at: | + | |
- | + | ||
- | * the source code to each of these unit tests | + | |
- | * the purpose of these programs is to validate the correct functionality of the respective library functions | + | |
- | * follow the logic | + | |
- | * make sure you understand what is going on | + | |
- | * ask questions to get clarification! | + | |
- | * the output from these programs once compiled and ran | + | |
- | * analyze the output | + | |
- | * make sure you understand what is going on | + | |
- | * ask questions to get clarification! | + | |
- | + | ||
- | =====Reference Implementation===== | + | |
- | As the layers and complexities rise, narrowing down the source of errors becomes increasingly important. | + | |
- | + | ||
- | If **unit-insert** isn't working, is it because of a problem there, in your **insert()** function, or in one of the node functions it calls, such as **mknode()**? | + | |
- | + | ||
- | To aid you in your development efforts, you now have the ability to import | + | |
- | + | ||
- | ====Using the test reference implementation==== | + | |
- | You'll notice that, upon running **make help** in the base-level Makefile, the following new options appear (about halfway in the middle): | + | |
<cli> | <cli> | ||
- | ** ** | + | lab46: |
- | ** make use-test-reference | + | |
- | ** make use-your-own-code | + | |
- | ** ** | + | |
</ | </ | ||
- | In order to make use of it, you'll need to run **make use-test-reference** from the base of your **sll0** project directory, as follows: | + | You should get some sort of confirmation indicating successful submission |
+ | if all went according | ||
+ | mismatches. | ||
- | <cli> | + | =====RUBRIC===== |
- | lab46: | + | I'll be evaluating the project based on the following criteria: |
- | ... | + | |
- | NODE reference implementation in place, run 'make' to build everything. | + | |
- | lab46:~/ | + | |
- | </ | + | |
- | You'll see that final message indicating everything is in place (it automatically runs a **make clean** | + | < |
+ | 78:sll1:final tally of results | ||
+ | *: | ||
+ | *:sll1:clean compile, no compiler messages [13/13] | ||
+ | *: | ||
+ | *:sll1: | ||
+ | *: | ||
+ | *:sll1:code tracked in lab46 semester repo [13/13] | ||
+ | </ | ||
- | < | + | ===Pertaining to the collaborative authoring of project documentation=== |
- | lab46: | + | |
- | ... | + | |
- | </ | + | |
- | **__Debugging__:** When using the test reference implementation, | + | |
+ | | ||
+ | | ||
+ | * near the average class content change average | ||
+ | | ||
+ | | ||
+ | | ||
+ | * content contributions will be factored into a documentation coefficient, | ||
+ | * no contributions, | ||
+ | * less than minimum contributions is 0.75 | ||
+ | * met minimum contribution threshold is 1.00 | ||
- | ====Reverting back to using your code==== | + | ===Additionally=== |
- | If you were trying out the reference implementation to verify queue functionality, | + | |
- | + | ||
- | < | + | |
- | lab46: | + | |
- | Local node implementation restored, run 'make clean; make' to build everything. | + | |
- | lab46: | + | |
- | </ | + | |
- | + | ||
- | Just to be clear: the reference implementation is not some magic shortcut getting you out of doing this project; it merely gives you a glimpse into how things are working, or should be working, provided your node library is complete and fully functional. | + | |
- | + | ||
- | =====Expected Results===== | + | |
- | To assist you in verifying a correct implementation, | + | |
- | + | ||
- | ====list library==== | + | |
- | Here is what you should get for the functions completed for sll1: | + | |
- | + | ||
- | < | + | |
- | lab46: | + | |
- | ====================================================== | + | |
- | = Verifying Singly-Linked | + | |
- | ====================================================== | + | |
- | [append] Total: | + | |
- | [searchlist] Total: | + | |
- | [cplist] Total: | + | |
- | [displayb] Total: | + | |
- | | + | |
- | ====================================================== | + | |
- | | + | |
- | ====================================================== | + | |
- | lab46: | + | |
- | </ | + | |
- | =====Submission===== | + | |
- | {{page> | + | |
+ | * Solutions not abiding | ||
+ | * Solutions | ||
+ | * Solutions not utilizing indentation to promote scope and clarity or otherwise maintaining consistency in code style and presentation will be subject to a 25% overall deduction | ||
+ | * Solutions not organized and easy to read (assume a terminal at least 90 characters wide, 40 characters tall) are subject to a 25% overall deduction |