User Tools

Site Tools


haas:fall2022:data:projects:sll1

Differences

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

Link to this comparison view

Next revision
Previous revision
haas:fall2022:data:projects:sll1 [2021/09/08 17:54] – created - external edit 127.0.0.1haas:fall2022:data:projects:sll1 [2022/09/12 12:52] (current) – [UPGRADING] wedge
Line 4: Line 4:
 </WRAP> </WRAP>
  
-======Project: SLL1======+======PROJECTSingly-Linked List of Nodes (SLL1)======
  
-=====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 1__: DESCRIPTION (DATESTAMP) +=====UPGRADING===== 
-=====Objective===== +To assist with consistency across all implementationsproject files for use with this project, along with the integration of the work you did on the last projectis made possible via a special recipe in the Makefile.
-We've commenced on our list explorationsimplementing 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 (creatingdisplaying, 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 base directory, and run:
  
-=====Project Overview=====+<cli> 
 +lab46:~/src/SEMESTER/DESIG/prevPROJECT$ make upgrade-sll1 
 +</cli>
  
-====header file==== +=====EDIT===== 
-In **inc/** is the list header file**list.h**+You will want to go [[/notes/data/fall2022/projects/sll1|here]] to edit and fill in the various sections of the document:
  
-For this project, we're going to be implementing the following functions:+  * [[/notes/data/fall2022/projects/sll1|https://lab46.g7n.org/notes/data/fall2022/projects/sll1]]
  
-<code c> +{{page>notes:data:fall2022:projects:sll1&nouser&nodate&nomdate}}
-List *append(List *, Node *, Node *);   // append new node into list after specified place +
-Node *searchlist(List *, char);         // is there a node containing value in list? +
-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 content has been added, largely to aid with **compare()** implementation and operation:+=====SUBMISSION===== 
 +To be successful in this project, the following criteria (or their equivalentmust be met:
  
-<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 +    * Compile with the **-Wall** and **--std=gnu18** compiler flags 
-</code>+    * 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 written, to 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 this) by the deadline.
  
-and: +====Submit Tool Usage==== 
- +Let' say you  have completed  work  on the  project, and  are ready  to 
-<code c> +submit, you  would do the following  (assuming you have a  program called 
-// return status codes +uom0.c):
-// +
-#define CMP_EQUALITY       0x00 +
-#define CMP_L1_NULL        0x01 +
-#define CMP_L1_EMPTY       0x02 +
-#define CMP_L1_UNDEFINED   0x03 +
-#define CMP_L1_GREATER     0x04 +
-#define CMP_L1_LESS        0x08 +
-#define CMP_L2_NULL        0x10 +
-#define CMP_L2_EMPTY       0x20 +
-#define CMP_L2_UNDEFINED   0x30 +
-#define CMP_L2_GREATER     0x40 +
-#define CMP_L2_LESS        0x80 +
-</code> +
- +
-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, which will help you in your implementation of the other functions. +
- +
-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/list/**, you will find 5 new C files: +
- +
-  * **append.c**   - which will house the append function +
-  * **cp.c**       - which will house the list copy function +
-  * **search.c**   - which will house the list search function +
-  * **displayb.c** - which will handle displaying the list backwards +
-  * **compare.c**  - which will handle comparing two lists for equality +
- +
-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 onmake 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/** and **app/** directories will use these functions in addition to their application logic to create complete executable programs. +
- +
-You will also notice there are function prototypes for these list library functions in the **list.h** header file, located in the **inc/** subdirectory, which you'll notice all the related programs you'll be playing with in this project are **#include**ing. +
- +
-====List library unit tests==== +
-In **unit/list/**, you will find these new files: +
- +
-  * **unit-append.c**     - unit test for **append()** library function +
-  * **unit-cplist.c**     - unit test for **cplist()** library function +
-  * **unit-searchlist.c** - unit test for **searchlist()** library function +
-  * **unit-displayb.c**   - unit test for **displayb()** library function +
-  * **unit-compare.c**    - unit test for **compare()** library function +
- +
-These are complete runnable programs (when compiledand 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 working implementation of previous project functions into your current project for the purposes of testing/debugging purposes. +
- +
-====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:~/src/SEMESTER/DESIG/PROJECT$ make submit
-** make use-test-reference  - use working implementation object files ** +
-** make use-your-own-code   - use your node implementation code       ** +
-**                                                                    **+
 </cli> </cli>
  
-In order to make use of it, you'll need to run **make use-test-reference** from the base of your **sll0** project directoryas follows:+You should get some sort of confirmation indicating successful submission 
 +if all went according to plan. If  notcheck for typos and or locational 
 +mismatches.
  
-<cli> +=====RUBRIC===== 
-lab46:~/src/SEMESTER/DESIG/sll1$ make use-test-reference +I'll be evaluating the project based on the following criteria:
-... +
-NODE reference implementation in place, run 'make' to build everything. +
-lab46:~/src/SEMESTER/DESIG/sll1$  +
-</cli>+
  
-You'll see that final message indicating everything is in place (it automatically runs a **make clean** for you), and then you can go ahead and build everything with it:+<code> 
 +78:sll1:final tally of results (78/78) 
 +*:sll1:obtained project by the Sunday prior to duedate [13/13] 
 +*:sll1:clean compile, no compiler messages [13/13] 
 +*:sll1:implementation passes unit tests [13/13] 
 +*:sll1:adequate modifications to code from template [13/13] 
 +*:sll1:program operations conform to project specifications [13/13] 
 +*:sll1:code tracked in lab46 semester repo [13/13] 
 +</code>
  
-<cli> +===Pertaining to the collaborative authoring of project documentation===
-lab46:~/src/SEMESTER/DESIG/sll1$ make +
-... +
-</cli>+
  
-**__Debugging__:** When using the test reference implementation, you will not be able to debug the contents of the test reference implementation functions (the files provided do not have debugging symbols added), so you'll need to take care not to step into these functions (it would be just like stepping into **printf()**. You can still compile the project with debugging support and debug (as usual) those compiled functions (ie the stack functions).+  each class member is to participate in the contribution of relevant information and formatting of the documentation 
 +    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, a value multiplied against your actual project submission to influence the end result: 
 +      * no contributions, co-efficient is 0.50 
 +      * 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, and wanted to revert back to your own code, it is as simple as: +
- +
-<cli> +
-lab46:~/src/SEMESTER/DESIG/sll1$ make use-your-own-code +
-Local node implementation restored, run 'make clean; make' to build everything. +
-lab46:~/src/SEMESTER/DESIG/sll1$  +
-</cli> +
- +
-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, a fully working implementation of the node library and list library (up to this point) should resemble the following: +
- +
-====list library==== +
-Here is what you should get for the functions completed for sll1: +
- +
-<cli> +
-lab46:~/src/SEMESTER/DESIG/sll1$ make check +
-====================================================== +
-=    Verifying Singly-Linked  List Functionality     = +
-====================================================== +
-    [append] Total:  11, Matches:  11, Mismatches:   0 +
-[searchlist] Total:  11, Matches:  11, Mismatches:   0 +
-    [cplist] Total:  11, Matches:  11, Mismatches:   0 +
-  [displayb] Total:  10, Matches:  10, Mismatches:   0 +
-   [compare] Total:  15, Matches:  15, Mismatches:   0 +
-====================================================== +
-   [RESULTS] Total:  58, Matches:  58, Mismatches:   0 +
-====================================================== +
-lab46:~/src/SEMESTER/DESIG/sll1$  +
-</cli> +
-=====Submission===== +
-{{page>haas:fall2021:common:submitblurb#DATA&noheader&nofooter}}+
  
 +  * Solutions not abiding  by spirit of project will be  subject to a 50% overall deduction
 +  * Solutions  not  utilizing descriptive  why and  how comments  will be subject to a 25% overall deduction
 +  * 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
haas/fall2022/data/projects/sll1.1631123683.txt.gz · Last modified: 2021/09/08 17:54 by 127.0.0.1