This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
haas:fall2022:data:projects:dll0 [2018/10/15 14:39] – created - external edit 127.0.0.1 | haas:fall2022:data:projects:dll0 [2022/10/15 12:12] (current) – [OBJECTIVE] wedge | ||
---|---|---|---|
Line 4: | Line 4: | ||
</ | </ | ||
- | ======Project: DLL0====== | + | ======PROJECT: Lists - Doubly-Linked Lists of Nodes (DLL0)====== |
- | =====Errata===== | + | =====OBJECTIVE===== |
- | This section will document any updates applied to the project | + | To continue our journey on doubly-linked data structures, and collaboratively authoring and documenting |
- | * __revision #__: < | + | =====OVERVIEW===== |
+ | We continue now delving into the realm of doubly-linked data structures. And we will start by reimplementing some of the same base data structures | ||
- | =====Objective===== | + | =====UPGRADING===== |
- | In this project, | + | To assist with consistency across all implementations, |
- | =====Procedure to obtain dll0===== | + | |
- | As dll0 utilizes | + | Simply go into the project base directory, and run: |
<cli> | <cli> | ||
- | lab46: | + | lab46: |
- | ... | + | |
</ | </ | ||
- | When you upgrade, your existing code is copied over, because | + | =====EDIT===== |
+ | You will want to go [[/ | ||
- | Once you run "**make upgrade-dll0**" you should have a **dll0** directory that you can access and commence working on just as you have with the other project directories. | + | |
- | =====Project Overview===== | + | |
- | For this project, we're going to be re-implementing MOST of the previous node and list functions. There have been a few changes, namely: | + | {{page> |
+ | =====SUBMISSION===== | ||
+ | To be successful in this project, the following criteria (or their equivalent) must be met: | ||
- | ====In inc/list.h==== | + | * Project must be submit on time, by the deadline. |
+ | * Late submissions will lose 33% credit per day, with the submission window closing on the 3rd day following the deadline. | ||
+ | * All code must compile cleanly (no warnings or errors) | ||
+ | * Compile with the **-Wall** and **--std=gnu18** compiler flags | ||
+ | * all requested functionality | ||
+ | * 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 for readability from having a consistent style throughout | ||
+ | * Code must be commented | ||
+ | * Any "to be implemented" | ||
+ | * these " | ||
+ | * 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 | ||
- | <code c 1> | + | ====Submit Tool Usage==== |
- | #ifndef _LIST_H | + | Let' |
- | #define _LIST_H | + | submit, you would do the following: |
- | #include " | + | < |
+ | lab46:~/src/SEMESTER/ | ||
+ | </ | ||
- | struct list { | + | You should get some sort of confirmation indicating successful submission |
- | Node *lead; | + | if all went according |
- | | + | mismatches. |
- | }; | + | |
- | code_t | + | =====RUBRIC===== |
- | code_t | + | I'll be evaluating the project based on the following criteria: |
- | code_t | + | < |
- | code_t | + | 78: |
- | + | *: | |
- | code_t | + | *:dll0:clean compile, no compiler messages [13/13] |
- | code_t | + | *: |
- | + | *: | |
- | #endif | + | *: |
+ | *:dll0:code tracked in lab46 semester repo [13/13] | ||
</ | </ | ||
- | The following changes have taken place from the singly-linked list implementation: | + | ===Pertaining to the collaborative authoring of project documentation=== |
- | * **qty** has been removed from the list (NO COUNTING!) | + | * each class member is to participate in the contribution of relevant information and formatting of the documentation |
- | * **getpos()**/**setpos()** are no longer present. In many ways their functionality is no longer needed with the doubly-linked nature | + | |
- | * **searchlist()** has been renamed to **find()** (aesthetic change, to keep function names at 8 characters or less, and now supports resuming (finding additional matches). | + | |
- | * **displayf()/ | + | * near the average class content change average |
+ | | ||
+ | | ||
+ | * adding and formatting data in an organized fashion, aiming | ||
+ | * content contributions | ||
+ | | ||
+ | | ||
+ | | ||
- | Just as with the doubly-linked node, there are now a set of status/ | + | ===Additionally=== |
- | ====In inc/data.h==== | + | |
- | In addition to what was there previously, we see the following: | + | |
- | <code c 1> | + | |
- | ////////////////////////////////////////////////////////////////////// | + | * Solutions |
- | // | + | * Solutions not utilizing indentation to promote scope and clarity or otherwise maintaining consistency |
- | // Status codes for the doubly linked list implementation | + | * Solutions not organized and easy to |
- | // | + | |
- | # | + | |
- | # | + | |
- | # | + | |
- | # | + | |
- | # | + | |
- | # | + | |
- | # | + | |
- | # | + | |
- | + | ||
- | ////////////////////////////////////////////////////////////////////// | + | |
- | // | + | |
- | // Options for list display() and support catlist() functions | + | |
- | // | + | |
- | # | + | |
- | # | + | |
- | # | + | |
- | # | + | |
- | </ | + | |
- | + | ||
- | Similar in many ways to the doubly-linked node status codes, we see a new possibility: | + | |
- | ====list operation status codes==== | + | |
- | You'll notice the presence of a set of # | + | |
- | + | ||
- | They are not exclusive- in some cases, multiple states can be applied. The intent is that you will OR together all pertinent states and return that from the function. | + | |
- | + | ||
- | * **DLL_SUCCESS** - everything went according | + | |
- | * **DLL_MALLOC_FAIL** - memory allocation failed (considered in error) | + | |
- | * **DLL_ALREADY_ALLOC** - memory has already been allocated (considered in error) | + | |
- | * **DLL_NULL** - result is NULL (probably in error) | + | |
- | * **DLL_EMPTY** - result is an empty list (may or may not be in error) | + | |
- | * **DLL_DEFAULT_FAIL** - default state of unimplemented functions (default error) | + | |
- | * **DLL_ERROR** - some error occurred | + | |
- | * **DLL_INVALID** - invalid use (passing a NULL pointer) | + | |
- | + | ||
- | For example, in the case of " | + | |
- | * DLL_ERROR (a problem has occurred) | + | |
- | * DLL_MALLOC_FAIL (a problem has occurred when using malloc()) | + | |
- | * DLL_NULL (no memory allocated, so list cannot be anything but NULL) | + | |
- | + | ||
- | ALL THREE states must be returned from the function | + | |
- | ====list library==== | + | |
- | In **src/ | + | |
- | + | ||
- | Figure out what is going on, the connections, | + | |
- | + | ||
- | Be sure to focus on implementing the functionality from scratch (the more you do this from scratch, vs. referencing old code, the more it will help you). | + | |
- | + | ||
- | ====List library unit tests==== | + | |
- | In **unit/ | + | |
- | + | ||
- | * **unit-mklist.c** - unit test for **mklist()** library function | + | |
- | * **unit-cplist.c** - unit test for **cplist()** library function | + | |
- | * **unit-append.c** - unit test for **append()** library function | + | |
- | * **unit-insert.c** - unit test for **insert()** library function | + | |
- | * **unit-find.c** - unit test for **find()** library function | + | |
- | * **unit-display.c** - unit test for **display()** library function | + | |
- | + | ||
- | Enhancements | + | |
- | + | ||
- | There are also corresponding **verify-FUNCTION.sh** scripts that will output | + | |
- | + | ||
- | 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! | + | |
- | + | ||
- | =====Expected Results===== | + | |
- | To assist you in verifying | + | |
- | + | ||
- | + | ||
- | ====list library==== | + | |
- | Here is what you should get for list: | + | |
- | + | ||
- | < | + | |
- | lab46: | + | |
- | ====================================================== | + | |
- | = Verifying Doubly-Linked | + | |
- | ====================================================== | + | |
- | [mklist] Total: | + | |
- | [cplist] Total: | + | |
- | [append] Total: | + | |
- | [insert] Total: | + | |
- | | + | |
- | [find] Total: | + | |
- | ====================================================== | + | |
- | | + | |
- | ====================================================== | + | |
- | lab46: | + | |
- | </ | + | |
- | =====Submission===== | + | |
- | {{page> | + | |