User Tools

Site Tools


haas:spring2015:data:projects:sll2

Differences

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

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
haas:spring2015:data:projects:sll2 [2015/02/21 17:39] – [Errata] wedgehaas:spring2015:data:projects:sll2 [2015/03/10 12:28] (current) – [list library] wedge
Line 14: Line 14:
  
 =====Objective===== =====Objective=====
-In this project, we wrap up our singly-linked list implementation by exploring the reverse display and sorting of nodes in a listalong with writing a few application programs to see our list in action. +In this project, we complete the node transactions core of our singly-linked list implementation by exploring the remaining functions: **obtain()****clearlist()**, **rmlist()**, **swapnode()**, and **sortlist()**
 =====Project Overview===== =====Project Overview=====
  
Line 21: Line 20:
  
 <code c> <code c>
-List *obtain (List *, Node **       );  // obtain/disconnect node from list +List *obtain (List *, Node **);         // obtain/disconnect node from list 
-List *rmlist(List *);                   // remove all nodes from list+List *clearlist(List *);                // empty an existing list 
 +List *rmlist(List *);                   // deallocate list
 List *swapnode(List *, Node *, Node *); // swap positions of given nodes in list List *swapnode(List *, Node *, Node *); // swap positions of given nodes in list
-List *sortlist(List *, int);  // sort list (according to mode)+List *sortlist(List *, int);            // sort list (according to mode)
 </code> </code>
  
 ====list library==== ====list library====
-In **src/list/**, you will find new C files:+In **src/list/**, you will find new C files:
  
   * **obtain.c**   - which will house the list obtain function (to disconnect nodes from a list)   * **obtain.c**   - which will house the list obtain function (to disconnect nodes from a list)
-  * **rm.c**       - which will handle clearing the list +  * **clear.c**    - which will handle clearing (emptying) the list 
 +  * **rm.c**       - which will handle deallocating (purging) the list 
   * **swap.c**     - which will handle swapping two nodes within a list   * **swap.c**     - which will handle swapping two nodes within a list
   * **sort.c**     - which will house the list sort function   * **sort.c**     - which will house the list sort function
  
-Take a look at the code there. These are the files that contain functions which will be compiled and archived into the node library (**liblist.a**) we will be using in this and future projects.+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 on, make sure you understand it. Figure out what is going on, make sure you understand it.
Line 43: Line 44:
  
   * **unit-obtain.c**     - unit test for **obtain()** library function   * **unit-obtain.c**     - unit test for **obtain()** library function
 +  * **unit-clearlist.c**  - unit test for **clearlist()** library function
   * **unit-rmlist.c**     - unit test for **rmlist()** library function   * **unit-rmlist.c**     - unit test for **rmlist()** library function
   * **unit-swapnode.c**   - unit test for **swapnode()** library function   * **unit-swapnode.c**   - unit test for **swapnode()** library function
Line 71: Line 73:
  
 It is also highly recommended to undertake as it will give you further experience working with these concepts. It is also highly recommended to undertake as it will give you further experience working with these concepts.
 +
 +=====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:
 +
 +====node library====
 +Here is what you should get for the node library:
 +
 +<cli>
 +lab46:~/src/data/sll2$ bin/verify-node.sh 
 +====================================================
 +=    Verifying Singly-Linked Node Functionality    =
 +====================================================
 + [mknode] Total:   4, Matches:   4, Mismatches:   0
 + [cpnode] Total:   5, Matches:   5, Mismatches:   0
 + [rmnode] Total:   2, Matches:   2, Mismatches:   0
 +====================================================
 +[RESULTS] Total:  11, Matches:  11, Mismatches:   0
 +====================================================
 +lab46:~/src/data/sll2$ 
 +</cli>
 +
 +====list library====
 +Here is what you should get for all the functions completed so far in the list library (sll0+sll1+sll2):
 +
 +<cli>
 +lab46:~/src/data/sll2$ bin/verify-list.sh 
 +======================================================
 +=     Verifying Singly-Linked List Functionality     =
 +======================================================
 +    [mklist] Total:   5, Matches:   5, Mismatches:   0
 +    [insert] Total:  11, Matches:  11, Mismatches:   0
 +  [displayf] Total:   4, Matches:   4, Mismatches:   0
 +    [getpos] Total:   8, Matches:   8, Mismatches:   0
 +    [setpos] Total:   9, Matches:   9, Mismatches:   0
 +    [append] Total:  11, Matches:  11, Mismatches:   0
 +[searchlist] Total:  11, Matches:  11, Mismatches:   0
 +    [cplist] Total:  11, Matches:  11, Mismatches:   0
 +  [displayb] Total:   6, Matches:   6, Mismatches:   0
 +   [compare] Total:   9, Matches:   9, Mismatches:   0
 +    [obtain] Total:  28, Matches:  28, Mismatches:   0
 + [clearlist] Total:   3, Matches:   3, Mismatches:   0
 +    [rmlist] Total:   3, Matches:   3, Mismatches:   0
 +  [swapnode] Total:   9, Matches:   9, Mismatches:   0
 +  [sortlist] Total:  27, Matches:  27, Mismatches:   0
 +======================================================
 +   [RESULTS] Total: 155, Matches: 155, Mismatches:   0
 +======================================================
 +lab46:~/src/data/sll2$ 
 +</cli>
 =====Submission Criteria===== =====Submission Criteria=====
 To be successful in this project, the following criteria must be met: To be successful in this project, the following criteria must be met:
  
   * Project must be submit on time, by the posted deadline.   * Project must be submit on time, by the posted deadline.
-    * The late submission window, if any, will be far shorter and once closed, will see no project evaluations done+    * Late submissions will lose 25% credit per day, with the submission window closing on the 4th day following the deadline
-  * Code must compile cleanly (no warnings or errors)+  * All code must compile cleanly (no warnings or errors)
     * all requested functions must be implemented in the related library     * all requested functions must be implemented in the related library
     * all requested functionality must conform to stated requirements (either on this project page or in comment banner in source code files themselves).     * all requested functionality must conform to stated requirements (either on this project page or in comment banner in source code files themselves).
Line 82: Line 133:
     * output formatted, where applicable, must match that of project requirements     * output formatted, where applicable, must match that of project requirements
   * Processing must be correct based on input given and output requested   * Processing must be correct based on input given and output requested
-  * Output must be correct (i.e. the list visualization, where applicable) based on values input+  * Output, if applicable, must be correct based on values input
   * Code must be nicely and consistently indented (you may use the **indent** tool)   * Code must be nicely and consistently indented (you may use the **indent** tool)
   * Code must be commented   * Code must be commented
     * Any "to be implemented" comments **MUST** be removed     * 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     * Sufficient comments explaining the point of provided logic **MUST** be present
 +  * Any and all functions written must have, **at most**, 1 **return** statement
 +    * points will be lost for solutions containing multiple return statements in a function.
   * Track/version the source code in a repository   * Track/version the source code in a repository
   * Submit a copy of your source code to me using the **submit** tool (**make submit** will do this) by the deadline.   * Submit a copy of your source code to me using the **submit** tool (**make submit** will do this) by the deadline.
haas/spring2015/data/projects/sll2.1424540399.txt.gz · Last modified: 2015/02/21 17:39 by wedge