User Tools

Site Tools


haas:fall2022:data:projects:sll3

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

haas:fall2022:data:projects:sll3 [2021/09/08 17:55] – created - external edit 127.0.0.1haas:fall2022:data:projects:sll3 [2022/09/26 14:38] (current) wedge
Line 4: Line 4:
 </WRAP> </WRAP>
  
-======Project: SLL3======+======PROJECTSingly-Linked List of Nodes (SLL3)======
  
-=====Errata===== +=====OBJECTIVE===== 
-This section will document any updates applied to the project since original release:+To continue to enhance our ability to explore various algorithmic and computing realms through the exploration and cultivation of debugging and troubleshooting skills, and collaboratively authoring and documenting the project and its specifications.
  
-  * __revision #__: <description> (DATESTAMP)+=====OVERVIEW===== 
 +Now with our singly-linked list implementation complete, we will perform a baseline tweak for use with the group data structure in sll4 (a group of lists). That particular tweak is the incorporation of a **quantity** element, so each and every transaction upon the list needs to maintain the accuracy of the node count.
  
-=====Objective===== +=====UPGRADING===== 
-This is a transitional project, making a few modifications to the list struct forcing some changes to a few functions so that we can better explore the next topic (in **sll4**).+To assist with consistency across all implementations, project files for use with this project, along with the integration of the work you did on the last project, is made possible via a special recipe in the Makefile.
  
-As such, while this is a standalone project, it should be considered a small one, and one that is given out in combination with another (again**sll4**), so be mindful of time management.+Simply go into the project base directory, and run:
  
-You will need to complete this project prior to upgrading to **sll4**.+<cli> 
 +lab46:~/src/SEMESTER/DESIG/prevPROJECT$ make upgrade-sll3 
 +</cli>
  
-=====Project Overview=====+=====EDIT===== 
 +You will want to go [[/notes/data/fall2022/projects/sll3|here]] to edit and fill in the various sections of the document:
  
-====list.h==== +  [[/notes/data/fall2022/projects/sll3|https://lab46.g7n.org/notes/data/fall2022/projects/sll3]]
-For this project, we need to make a couple modifications to the list struct (which you can also check out in **inc/list.h**):+
  
-<code c> +{{page>notes:data:fall2022:projects:sll3&nouser&nodate&nomdate}}
-////////////////////////////////////////////////////////////////////// +
-// +
-// list struct definition +
-// +
-struct list { +
-    Node              *lead;            // pointer to start of list +
-    Node              *last;            // pointer to end of list +
-    struct list       *next;            // pointer to the next list +
-    unsigned long int  qty;             // number of nodes in list +
-}; +
-typedef struct list            List;    // cuz we deserve nice things +
-</code>+
  
-Specificallywe have an after pointer, so that we can point to an entirely separate list, along with a newly added **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 (**insert()**, **append()**, **obtain()**, and **mklist()**)+  Project must be submit on timeby 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  must conform  to stated  requirements (either on  this document or  in a comment banner in  source code files themselves)
 +  Executed programs must display in a manner similar to provided output 
 +    output  formatted where applicable,  must match  that of  project requirements 
 +  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 writtento strive for readability from having a consistent style throughout 
 +  Code must be commented 
 +    Any "to be implemented" comments **MUST** be removed 
 +      * these   "to  be  implemented"   comments if  still  present  at evaluation time, will result in points being deducted. 
 +      Sufficient  comments  explaining  the point  of  provided   logic **MUST** be present 
 +  * No global variables (without instructor approval), no goto statements, no calling of main()! 
 +  Track/version the source code in your lab46 semester repository 
 +  Submit  a copy of  your source code to  me using the  **submit** tool (**make submit** on lab46 will do thisby the deadline.
  
-To implement the list'new **next** pointer, you'll want to enhance **mklist()** and **cplist()** accordingly.+====Submit Tool Usage==== 
 +Let' say you  have completed  work  on the  project, and  are ready  to 
 +submit, you  would do the following  (assuming you have a  program called 
 +uom0.c):
  
-=====Expected Results===== +<cli> 
-To assist you in verifying a correct implementation, a fully working implementation of the node library, list library (with new modifications), and group library should resemble the following:+lab46:~/src/SEMESTER/DESIG/PROJECT$ make submit 
 +</cli>
  
-====list library====+You should get some sort of confirmation indicating successful submission 
 +if all went according to plan. If  not, check for typos and or locational 
 +mismatches.
  
-===sll3 list functions=== +=====RUBRIC===== 
-Here is what you should get for the specific functions relevant to sll3:+I'll be evaluating the project based on the following criteria:
  
-<cli+<code
-lab46:~/src/SEMESTER/DESIG/sll3$ make check +78:sll3:final tally of results (78/78) 
-====================================================== +*:sll3:obtained project by the Sunday prior to duedate [13/13] 
-=    Verifying Singly-Linked  List Functionality     = +*:sll3:clean compileno compiler messages [13/13] 
-====================================================== +*:sll3:implementation passes unit tests [13/13] 
-    [mklist] Total 21, Matches 21, Mismatches:   0 +*:sll3:adequate modifications to code from template [13/13] 
-    [cplistTotal 14, Matches 14Mismatches:   0 +*:sll3:program operations conform to project specifications [13/13] 
-    [insertTotal 21, Matches 21, Mismatches:   0 +*:sll3:code tracked in lab46 semester repo [13/13] 
-    [appendTotal 21, Matches 21, Mismatches:   0 +</code>
-    [obtainTotal 44, Matches 44, Mismatches:   0 +
-====================================================== +
-   [RESULTSTotal121, Matches121, Mismatches:   0 +
-====================================================== +
-lab46:~/src/SEMESTER/DESIG/sll3$  +
-</cli>+
  
-===entire list=== +===Pertaining to the collaborative authoring of project documentation===
-Here is what you should get for all the functions completed so far in the list library (sll0+sll1+sll2+sll3):+
  
-<cli> +  * each class member is to participate in the contribution of relevant information and formatting of the documentation 
-lab46:~/src/SEMESTER/DESIG/sll3$ bin/verify-list.sh +    * minimal member contributions consist of
-====================================================== +      * near the class average edits (a value of at least four productive edits) 
-=     Verifying Singly-Linked List Functionality     = +      * 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) 
-    [mklist] Total:  21Matches:  21, Mismatches:   0 +      * no adding in one commit then later removing in its entirety for the sake of satisfying edit requirements 
-    [insert] Total:  21Matches 21, Mismatches:   0 +    * adding and formatting data in an organized fashionaiming to create an informative and readable document that anyone in the class can reference 
-  [displayf] Total:  10Matches:  10, Mismatches:   +    * content contributions will be factored into a documentation coefficienta value multiplied against your actual project submission to influence the end result
-    [getpos] Total:   8, Matches:   8, Mismatches:   +      * no contributionsco-efficient is 0.50 
-    [setpos] Total:   9, Matches:   9, Mismatches:   0 +      * less than minimum contributions is 0.75 
-    [append] Total:  21, Matches:  21, Mismatches:   0 +      * met minimum contribution threshold is 1.00 
-[searchlist] Total:  11, Matches:  11, Mismatches:   0 + 
-    [cplist] Total:  14, Matches:  14, Mismatches:   0 +===Additionally=== 
-  [displayb] Total:  10, Matches:  10, Mismatches:   0 + 
-   [compare] Total:  15, Matches:  15, Mismatches:   0 +  * Solutions not abiding  by spirit of project will be  subject to a 50% overall deduction 
-    [obtain] Total:  44, Matches:  44, Mismatches:   0 +  * Solutions  not  utilizing descriptive  why and  how comments  will be subject to a 25% overall deduction 
- [clearlist] Total:   3, Matches:   3, Mismatches:   0 +  * 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 
-    [rmlist] Total:   3, Matches:   3, Mismatches:   0 +  * Solutions not organized and easy to  read (assume a terminal at least 90 characters wide40 characters tall)  are subject to a 25% overall deduction
-  [swapnode] Total:   9, Matches:   9, Mismatches:   0 +
-  [sortlist] Total:  27Matches:  27, Mismatches:   0 +
-====================================================== +
-   [RESULTS] Total: 226, Matches: 226, Mismatches:   0 +
-======================================================  +
-lab46:~/src/SEMESTER/DESIG/sll3$  +
-</cli> +
-=====Submission===== +
-{{page>haas:fall2021:common:submitblurb#DATA&noheader&nofooter}}+
  
haas/fall2022/data/projects/sll3.1631123729.txt.gz · Last modified: 2021/09/08 17:55 by 127.0.0.1