This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
haas:fall2022:data:projects:dll2 [2021/10/28 19:46] – created - external edit 127.0.0.1 | haas:fall2022:data:projects:dll2 [2022/10/31 11:45] (current) – [OVERVIEW] wedge | ||
---|---|---|---|
Line 4: | Line 4: | ||
</ | </ | ||
- | ======Project: DLL2====== | + | ======PROJECT: Lists - Doubly-Linked Lists of Nodes (DLL2)====== |
- | =====Errata===== | + | =====OBJECTIVE===== |
- | This section will document any updates applied | + | We prepare |
- | | + | =====OVERVIEW===== |
+ | With our list implementation completed, we will be making some modifications to better suit our implementation for our next intended data structure, stacks. Namely, adding the **qty** element to the list struct, and adding more modes to **display()**. | ||
- | =====Objective===== | + | =====UPGRADING===== |
- | This is a transitional | + | To assist with consistency across all implementations, |
- | As such, while this is a standalone | + | Simply go into the project |
- | You will need to complete this project prior to upgrading to **dls0**. | + | < |
+ | lab46: | ||
+ | </ | ||
- | =====Project Overview===== | + | =====EDIT===== |
+ | You will want to go [[/ | ||
- | ====list.h==== | + | |
- | For this project, we need to make a modification to the list struct (which you can also check out in **inc/list.h**): | + | |
- | <code c> | + | {{page>notes: |
- | struct list { | + | |
- | Node *lead; | + | |
- | Node *last; | + | |
- | ulli | + | |
- | }; | + | |
- | </code> | + | |
- | Specifically, we now have a **qty** variable, which will keep track of the number of nodes in the list. | + | =====SUBMISSION===== |
+ | To be successful in this project, the following criteria (or their equivalent) must be met: | ||
- | To implement **qty**, all list functions that perform manipulations to the list will need to see some updating (**mklist()**, **insert()**, **append()**, and **obtain()**). Functions like **cplist()** should | + | |
+ | * Late submissions | ||
+ | | ||
+ | | ||
+ | * all requested functionality | ||
+ | | ||
+ | | ||
+ | * Processing must be correct based on input given and output requested | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | * these " | ||
+ | * Sufficient | ||
+ | * No global variables (without instructor approval), no goto statements, no calling of main()! | ||
+ | * Track/ | ||
+ | * Submit | ||
- | ====list library==== | + | ====Submit Tool Usage==== |
- | Again, in **src/ | + | Let' |
+ | submit, you would do the following: | ||
- | ===display() enhancements=== | ||
- | You are also to implement 4 additional modes to the display() function. | ||
- | |||
- | Be sure to adjust any mode error correction accordingly. | ||
- | |||
- | The modes are as follows: | ||
- | |||
- | <code c> | ||
- | ////////////////////////////////////////////////////////////////////// | ||
- | // | ||
- | // Options for list display() and support catlist() functions | ||
- | // | ||
- | # | ||
- | # | ||
- | # | ||
- | # | ||
- | # | ||
- | # | ||
- | # | ||
- | # | ||
- | </ | ||
- | |||
- | What has changed? There are two additional toggles: | ||
- | * NOASCII/ | ||
- | * in ASCII mode, separators become commas, and the terminating NULL no longer is output | ||
- | * SEPS/NOSEPS - whether or not to display arrows/ | ||
- | |||
- | For example, if there was a numeric 65 stored in the node, with DISPLAY_ASCII set, an **' | ||
- | |||
- | ==display() output examples based on mode== | ||
- | Let's say we have a list with the following elements: | ||
- | |||
- | first -> 51 -> 49 -> 51 -> 51 -> 55 -> NULL | ||
- | |||
- | ==forward, no positions, with separators, as numbers (not ASCII)== | ||
<cli> | <cli> | ||
- | 51 -> 49 -> 51 -> 51 -> 55 -> NULL | + | lab46: |
</ | </ | ||
- | ==forward, with positions, with separators, as numbers (NOT ASCII)== | + | You should get some sort of confirmation indicating successful submission |
- | < | + | if all went according to plan. If not, check for typos and or locational |
- | [0] 51 -> [1] 49 -> [2] 51 -> [3] 51 -> [4] 55 -> NULL | + | mismatches. |
- | </ | + | |
- | ==forward, no positions, with separators, in ASCII== | + | =====RUBRIC===== |
- | < | + | I'll be evaluating the project based on the following criteria: |
- | '3' -> ' | + | |
- | </ | + | |
- | ==forward, with positions, with separators, in ASCII== | + | <code> |
- | <cli> | + | 65: |
- | [0] ' | + | *: |
- | </cli> | + | *: |
+ | *: | ||
+ | *: | ||
+ | *: | ||
+ | *:dll2:code tracked in lab46 semester repo [7/7] | ||
+ | </code> | ||
- | ==forward, no positions, no separators, in ASCII== | + | ===Pertaining to the collaborative authoring of project documentation=== |
- | < | + | |
- | 31337 | + | |
- | </ | + | |
- | Please see the unit test for more information. | + | * each class member is to participate in the contribution of relevant |
+ | * minimal member contributions consist of: | ||
+ | * near the class average edits (a value of at least four productive edits) | ||
+ | * near the average class content change average (a value of at least 256 bytes (absolute value of data content change)) | ||
+ | * near the class content contribution average (a value of at least 1kiB) | ||
+ | * no adding in one commit then later removing in its entirety for the sake of satisfying edit requirements | ||
+ | * adding and formatting data in an organized fashion, aiming to create an informative and readable document that anyone in the class can reference | ||
+ | * 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 | ||
- | ====List library applications==== | + | ===Additionally=== |
- | ===cyclecheck (bonus opportunity)=== | + | |
- | A problem that cropped up from time to time during the list implementation was the instance of a list **cycle**, where a node accidentally ended up pointing to itself (or a previous location, to the direction of traversal). This led to seemingly " | + | |
- | + | | |
- | With the doubly-linked list functions (especially insert() and append()) we baked in additional resiliency | + | |
- | + | ||
- | But we've not done anything to address the presence | + | |
- | =====Expected Results===== | + | |
- | To assist you in verifying | + | |
- | + | ||
- | ====list library==== | + | |
- | + | ||
- | ===dll2 list functions=== | + | |
- | Here is what you should get for the specific functions relevant to dll3: | + | |
- | + | ||
- | < | + | |
- | lab46: | + | |
- | ====================================================== | + | |
- | = Verifying Doubly-Linked | + | |
- | ====================================================== | + | |
- | [mklist] Total: | + | |
- | [append] Total: | + | |
- | [insert] Total: | + | |
- | | + | |
- | [display] Total: | + | |
- | ====================================================== | + | |
- | | + | |
- | ====================================================== | + | |
- | lab46: | + | |
- | </ | + | |
- | + | ||
- | ===entire list=== | + | |
- | Here is what you should get for all the functions completed so far in the list library (dll0+dll1+dll2): | + | |
- | + | ||
- | < | + | |
- | lab46: | + | |
- | ==================================================== | + | |
- | = Verifying Doubly-Linked List Functionality | + | |
- | ==================================================== | + | |
- | [mklist] Total: | + | |
- | [cplist] Total: | + | |
- | [rmlist] Total: | + | |
- | | + | |
- | [append] Total: | + | |
- | [insert] Total: | + | |
- | [obtain] Total: | + | |
- | | + | |
- | [find] Total: | + | |
- | | + | |
- | [swapnode] Total: | + | |
- | [sortlist] Total: | + | |
- | ==================================================== | + | |
- | | + | |
- | ==================================================== | + | |
- | lab46: | + | |
- | </ | + | |
- | =====Submission===== | + | |
- | {{page> | + | |