This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
haas:fall2022:data:projects:sll4 [2021/10/05 19:21] – created - external edit 127.0.0.1 | haas:fall2022:data:projects:sll4 [2022/09/26 15:13] (current) – wedge | ||
---|---|---|---|
Line 4: | Line 4: | ||
</ | </ | ||
- | ======Project: SLL4====== | + | ======PROJECT: Groups - Or Singly-Linked List of Lists of Nodes (SLL4)====== |
- | =====Errata===== | + | =====OBJECTIVE===== |
- | This section will document any updates applied | + | To continue |
- | * __revision #__: < | + | =====OVERVIEW===== |
+ | As our list data structure was built atop nodes, here we have a new data structure, groups, built atop lists: groups of lists! Intended as an opportunity for you to better exercise your conceptual understanding of everything | ||
- | =====Objective===== | + | =====UPGRADING===== |
- | In this project, | + | To assist with consistency across all implementations, |
- | So what does this give us? An organizing unit for lists! I'm calling them " | + | Simply go into the project base directory, and run: |
- | =====Project Overview===== | + | < |
+ | lab46: | ||
+ | </ | ||
- | ====group.h==== | + | =====EDIT===== |
- | We can now organize our lists with this new groupoflists struct (typedef' | + | You will want to go [[/ |
- | <code c> | + | * [[/ |
- | #ifndef _GROUP_H | + | |
- | #define _GROUP_H | + | |
- | #include " | + | {{page> |
- | struct groupoflists { | + | =====SUBMISSION===== |
- | List *initial; | + | To be successful in this project, the following criteria (or their equivalent) must be met: |
- | List *closing; | + | |
- | }; | + | |
- | typedef struct groupoflists Group; | + | |
- | typedef long | + | |
- | Group *mkgroup(void); // create/ | + | |
- | Group *rmgroup(Group *); // clear/ | + | * 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 | ||
+ | * Compile with the **-Wall** and **--std=gnu18** compiler flags | ||
+ | * all requested functionality | ||
+ | | ||
+ | * 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 | ||
- | Group *linsert(Group *, List *, List *); // add list before given list | + | ====Submit Tool Usage==== |
- | Group *lappend(Group *, List *, List *); // add list after given list | + | Let' |
- | Group *lobtain(Group *, List **); // obtain/ | + | submit, you would do the following |
+ | uom0.c): | ||
- | sli ldisplay(Group *, sli); // display list group | + | < |
+ | lab46:~/src/SEMESTER/ | ||
+ | </ | ||
- | sli lgetpos(Group | + | You should get some sort of confirmation indicating successful submission |
- | List *lsetpos(Group | + | if all went according to plan. If not, check for typos and or locational |
+ | mismatches. | ||
- | #endif | + | =====RUBRIC===== |
+ | I'll be evaluating the project based on the following criteria: | ||
+ | |||
+ | < | ||
+ | 91: | ||
+ | *: | ||
+ | *: | ||
+ | *: | ||
+ | *: | ||
+ | *: | ||
+ | *:sll4:code tracked in lab46 semester repo [13/13] | ||
</ | </ | ||
- | You should notice a striking similarity | + | ===Pertaining |
- | This project will test the level of your abstraction skills-- for there isn't that much of a conceptual difference between | + | * each class member is to participate in the contribution |
- | ====group library==== | + | * minimal member contributions consist of: |
- | In **src/ | + | * 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 | ||
+ | * no contributions, | ||
+ | * less than minimum contributions is 0.75 | ||
+ | * met minimum contribution threshold is 1.00 | ||
- | * **obtain.c** | + | ===Additionally=== |
- | * **pos.c** | + | |
- | * **mk.c** | + | |
- | * **rm.c** | + | |
- | * **insert.c** | + | |
- | * **append.c** | + | |
- | * **display.c** | + | |
- | Take a look at the code there. These are the files that contain functions which will be compiled and archived into the group library (**libgroup.a**) we will be using in this and future projects. | + | * Solutions not abiding |
- | + | | |
- | Figure out what is going on, make sure you understand it. | + | * Solutions not utilizing indentation to promote scope and clarity or otherwise maintaining consistency in code style and presentation will be subject |
- | + | * Solutions not organized | |
- | ====Group library unit tests==== | + | |
- | In **unit/ | + | |
- | + | ||
- | These are complete runnable programs (when compiled, and linked against the group 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 | + | |
- | * 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 | + | |
- | * analyze the output | + | |
- | * make sure you understand what is going on | + | |
- | * ask questions | + | |
- | + | ||
- | =====Expected Results===== | + | |
- | To assist you in verifying | + | |
- | + | ||
- | ====group library==== | + | |
- | Here is what you should get for all the functions completed in the group library: | + | |
- | + | ||
- | < | + | |
- | lab46: | + | |
- | ====================================================== | + | |
- | = Verifying Singly-Linked Group Functionality | + | |
- | ====================================================== | + | |
- | | + | |
- | | + | |
- | | + | |
- | | + | |
- | | + | |
- | [ldisplay] Total: | + | |
- | | + | |
- | | + | |
- | ====================================================== | + | |
- | | + | |
- | ====================================================== | + | |
- | lab46: | + | |
- | </ | + | |
- | =====Submission===== | + | |
- | {{page> | + | |