User Tools

Site Tools


haas:fall2014:data:projects:dls0

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:fall2014:data:projects:dls0 [2014/11/01 12:49] – [Project Overview] wedgehaas:fall2014:data:projects:dls0 [2014/11/19 14:42] (current) – [Errata] wedge
Line 11: Line 11:
 This section will document any updates applied to the project since original release: This section will document any updates applied to the project since original release:
  
-  * __revision #__<description> (datestring)+  * __revision 1__logic error fix and output tweaks to various unit tests (20141105) 
 +    * logic error in **unit-cpstack**, preventing most of its tests from running (FIXED) 
 +      * changed ending while to do-while loop 
 +      * loop conditions were originally (i == 0) && (status != 0), should have been != -1 for both 
 +    * missing double newline after certain "should be" outputs in **unit-pop** (FIXED) 
 +    * Some additional aesthetic enhancements to the base Makefile were made. 
 +  * __revision 2__: Makefile enhancements to facilitate project usage (20141107) 
 +    * test reference implementation feature enhancements 
 +      * a slight change to the option to enable (**make use-test-reference**) 
 +      * a new option to restore your own code (**make use-your-own-code**) 
 +    * **src/stack/Makefile** now cleans up vim .swp and nano .save files 
 +    * **testing/stack/unit/Makefile** fixes an off-by-one pretty display spacing issue 
 +  * __revision 3__: verify-stack.sh enhancements (20141119) 
 +    * now includes absolute totals
  
 =====Objective===== =====Objective=====
Line 73: Line 86:
   * **peek**: the ability to gain access to the top node without removing it from the stack   * **peek**: the ability to gain access to the top node without removing it from the stack
   * **is the stack empty?**: the ability to query the stack and determine if it is empty or non-empty (or perhaps if non-empty, how full is it?)   * **is the stack empty?**: the ability to query the stack and determine if it is empty or non-empty (or perhaps if non-empty, how full is it?)
-  * **purge**: the ability to empty/clear out the stack 
  
 +While we may be implementing these supplemental functions, it should be noted that not only are they in no way necessary for using a stack, they could be detrimental (just as relying on **qty** in the sll projects was), as one could rely on them as a crutch.
 +
 +Their inclusion should ONLY be viewed as a means of convenience (in certain scenarios they may result in less code needing to be written), but NOT as something you should routinely make use of.
 ====size can matter==== ====size can matter====
  
Line 92: Line 107:
  
 For this project, we're going to be implementing the stack data structure atop of our recently re-implemented linked list (the doubly linked list). For this project, we're going to be implementing the stack data structure atop of our recently re-implemented linked list (the doubly linked list).
-====In inc/node.h==== +====In inc/list.h==== 
-<code c 1> +There is one change (an addition) that has been made to **list.h**, and that is the return of the **qty** element:
-#ifndef _NODE_H +
-#define _NODE_H+
  
-#include <stdlib.h>+<code c> 
 +struct list { 
 +    Node *start;          // pointer to start of list 
 +    Node *end;            // pointer to end of list 
 +    int   qty;            // holds current count of nodes 
 +}; 
 +typedef struct list List; // because we deserve nice things 
 +</code>
  
-struct node { +It should be noted (and stressed) that the utilization of **qty** should JUST be in maintaining a count. You need not re-implement or change the logic of any of your list functionality to base its operations or to rely on **qty** in any way (just as before, if you do you'll lost credit). 
-        char         data; + 
-        struct node *prev; +From the list's point of view, its sole purpose is for show. 
-        struct node *next;+ 
 +With that said, you likely only have to make changes to 4 functions in order to appropriately accommodate **qty**-- any low-level list operation that is responsible for initializing, adding, or taking nodes out of the list. 
 +====In inc/stack.h==== 
 + 
 +<code c 1> 
 +#ifndef _STACK_H 
 +#define _STACK_H 
 + 
 +#include "list.h"               // stack relies on list to work 
 +                                // (which relies on node
 +struct stack 
 +    List *data;                 // pointer to list containing data 
 +    Node *top                 // pointer to node at top of stack 
 +    int   size                // maximum stack size (0 is unbounded)
 }; };
-typedef struct node Node;+typedef struct stack Stack    // because we deserve nice things 
 + 
 +Stack *mkstack(int           ); // create new stack (of max size) 
 +Stack *cpstack(Stack *       ); // create a copy of an existing stack 
 +Stack *rmstack(Stack *       ); // clear and de-allocate an existing stack
  
-Node *mknode(char  );     // allocate new node containing value +int    push(Stack **, Node * ); // put new node on top of stack 
-Node *rmnode(Node *);     // deallocate node +int    pop (Stack **Node **); // grab (and disconnecttop node off stack
-Node *cpnode(Node *);     // duplicate node+
  
 +Node  *peek(Stack *          ); // grab (do not disconnect) top node off stack
 +int    isempty(Stack *       ); // determine if the stack is empty or not
 #endif #endif
 </code> </code>
  
-There is an addition of a "prev" node pointer, to allow connections to our previous neighbors.+For our stack implementation, we will make increased used of the double pointer, in order to achieve passing parameters by address.
  
-The node value element has been renamed to "data", just to make sure you understand what is going on code-wise.+This is necessary so that we can free up the return value of **push()** and **pop()** to be used for status (ie look out for stack overflows and underflows).
  
-====In inc/list.h====+peek() and isEmpty() are being implemented as an exercise to aid in your understanding of stacks. Again, avoid their use except is a means of convenience (or to further optimize your code). The general rule of thumb is that the use of peek() and isEmpty() should result in shortening your code in a clear or clever way.
  
-<code c 1> +If you cannot think of how to solve a problem without the use of peek()/isEmpty(), that is a strong clue that you shouldn't be using them.
-#ifndef _LIST_H +
-#define _LIST_H+
  
-#include "node.h"                       // list relies on node to work+Also, while nothing is stopping you from doing so, the idea here is that things like **size** and the underlying list **qty** in stack transactions will **NOT** be accessed outside of the push() and pop() functionsJust like my warnings about using **qty** in your list solutions-- do not consider **size** as a variable for your general use. 
  
-struct list { +In object-oriented programming, both **size** and **qty** would be **private** member variables of their respective classes, unable to be used by anything other than their respective member functions. 
-    Node *start;                        // pointer to start of list +====list library==== 
-    Node *end;                          // pointer to end of list +Againt, in **src/list/**, you are to add support for **qty** so that, just as the list's **start** and **end** maintain an accurate positioning of their respective aspects of the list**qty** maintains a count of the total number of nodes still in the list.
-}; +
-typedef struct list List;               // because we deserve nice things+
  
-List *mklist(void  );                   // create/allocate new list struct +===display() enhancements=== 
-List *cplist(List *);                   // copy (duplicate) list +You are also to implement 4 additional modes to the display() function. 
-List *rmlist(List *);                   // remove all nodes from list+
  
-List *insert (List *, Node *, Node *);  // add node before given node +This means you'll need to expand the current modulus divide by 4 to one of 8.
-List *append (List *, Node *, Node *);  // add node after given node +
-List *obtain (List *, Node **       );  // obtain/disconnect node from list+
  
-void  display(List *, int);             // display list according to mode+The current modes are as follows:
  
-Node *findnode(List *int);            // locate node containing value +<code c> 
-List *sortlist(List *int);            // sort list (according to mode)+//       modes: 0 display the list forwardno positional values 
 +//              1 display the list forward, with positional values 
 +//              2 display the list backwardsno positional values 
 +//              3 display the list backwards, with positional values 
 +</code>
  
-List *swapnode(List *, Node *, Node *); // swap positions of given nodes in list+The new modes are (you may want to add these comments to your **display.c** file):
  
-#endif+<code c> 
 +//          4 display the list forward, no positional values, in ASCII 
 +//          5 display the list forward, with positional values, in ASCII 
 +//          6 display the list backwards, no positional values, in ASCII 
 +//          7 display the list backwards, with positional values, in ASCII
 </code> </code>
  
-The following changes have taken place:+What has changed? In modes 4-8, instead of displaying the numeric value contained in the node's data element, you are instead to represent it as its ASCII character.
  
-  * **qty** has been removed from the list; any code you wrote that is based on it will need to be implemented different way (do NOT recreate the conditions to continue relying on a countyou will lose credit if you do so). +For example, if there was numeric 65 stored in the node in the mode 4-7 representationan 'A' should instead be displayed.
-  * **getpos()**/**setpos()** are no longer present. In many ways their functionality is no longer needed with the doubly-linked nature of the list. +
-  * **searchlist()** has been renamed to **findnode()** (aesthetic change, to keep function names at 8 characters or less). +
-  * **displayf()/displayb()** are goneand previous functionality will be merged into one universal **display()** function+
  
-====list library==== +==display() output examples based on mode== 
-In **src/node/**you will find skeletons of what was previously thereready for you to re-implement.+Let's say we have a list with the following elements: 
 + 
 +  start -> 51 -> 49 -> 51 -> 51 -> 55 -> NULL 
 + 
 +==mode 0: forward, no positions, as numbers== 
 +<cli> 
 +51 -> 49 -> 51 -> 51 -> 55 -> NULL 
 +</cli> 
 + 
 +==mode 1: forward, with positions, as numbers== 
 +<cli> 
 +[0] 51 -> [1] 49 -> [2] 51 -> [3] 51 -> [4] 55 -> NULL 
 +</cli> 
 + 
 +==mode 4: forwardno positionsin ASCII== 
 +<cli> 
 +'3' -> '1' -> '3' -> '3' -> '7' -> NULL 
 +</cli> 
 + 
 +==mode 5: forward, with positions, in ASCII== 
 +<cli> 
 +[0] '3' -> [1] '1' -> [2] '3' -> [3] '3' -> [4] '7' -> NULL 
 +</cli>
  
-In **src/list/**, you will find the same- skeletons of the above prototyped functions, hollowed out in anticipation of being made operational.+====stack library==== 
 +In **src/stack/**, you will find skeletons of the above prototyped functions, hollowed out in anticipation of being made operational.
  
 Figure out what is going on, the connections, and make sure you understand it. Figure out what is going on, the connections, and make sure you understand it.
  
-As ALL source files are now skeletonsno sample code has been given. This is intended to be a fresh implementation. While you may reference old code, do not rely on it- try your hand at implementing the functionality from scratch (the more you do this from scratch, the more it will help you).+Againyour stack is to utilize the stack for its underlying data storage operations. This is what the stack's **data** list pointer is to be used for.
  
-====List library unit tests==== +====Reference Implementation==== 
-In **testing/list/unit/**you will find these new files:+As the layers and complexities risenarrowing down the source of errors becomes increasingly important.
  
-  * **unit-append.c** - unit test for **append()** library function +If your stack push() isn't working, is it because of a problem in push()? Or might it be in an underlying list operation it relies upon? Or perhaps even the lowest-level node functions..
-  * **unit-insert.c** - unit test for **insert()** library function +
-  * **unit-swapnode.c** - unit test for **swapnode()** library function +
-  * **unit-sortlist.c** - unit test for **sortlist()** library function +
-  * **unit-display.c** - unit test for **display()** library function+
  
-Additional unit tests will be provided via dll0 project updates.+To aid you in your development efforts, you now have the ability to import a functioning node and list implementation into your project for the purposes of testing your stack functionality.
  
-There are also corresponding **verify-FUNCTION.sh** scripts that will output a "MATCH"/"MISMATCH" to confirm overall conformance with the pertinent list functionality.+This also provides another opportunity for those who have fallen behind to stay current, as they can work on this project without having needed to successfully get full list functionality.
  
-These are complete runnable programs (when compiled, and linked against the list library, which is all handled for you by the **Makefile** system in place).+===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> 
 +**                                                                    ** 
 +** make use-test-reference  - use working implementation object files ** 
 +** make use-your-own-code   - use your node/list implementation code  ** 
 +**                                                                    ** 
 +</cli> 
 + 
 +In order to make use of it, you'll need to run **make use-test-reference** from the base of your **dls0** project directory, as follows: 
 + 
 +<cli> 
 +lab46:~/src/data/dls0$ make use-test-reference 
 +make[1]: Entering directory '/home/wedge/src/data/dls0/src' 
 +make[2]: Entering directory '/home/wedge/src/data/dls0/src/list' 
 +rm -f *.swp *.o append.o cp.o display.o insert.o mk.o obtain.o rm.o search.o sort.o swap.o core 
 +make[2]: Leaving directory '/home/wedge/src/data/dls0/src/list' 
 +make[2]: Entering directory '/home/wedge/src/data/dls0/src/node' 
 +rm -f *.swp *.o cp.o mk.o rm.o core 
 +make[2]: Leaving directory '/home/wedge/src/data/dls0/src/node' 
 +make[2]: Entering directory '/home/wedge/src/data/dls0/src/stack' 
 +rm -f *.swp *.o cp.o isempty.o mk.o peek.o pop.o push.o rm.o core 
 +make[2]: Leaving directory '/home/wedge/src/data/dls0/src/stack' 
 +make[1]: Leaving directory '/home/wedge/src/data/dls0/src' 
 +make[1]: Entering directory '/home/wedge/src/data/dls0/testing' 
 +make[2]: Entering directory '/home/wedge/src/data/dls0/testing/list' 
 +make[3]: Entering directory '/home/wedge/src/data/dls0/testing/list/unit' 
 +rm -f *.swp *.o ../../../bin/unit-append unit-cplist unit-display unit-findnode unit-insert unit-mklist unit-obtain unit-rmlist unit-sortlist unit-swapnode core 
 +make[3]: Leaving directory '/home/wedge/src/data/dls0/testing/list/unit' 
 +make[2]: Leaving directory '/home/wedge/src/data/dls0/testing/list' 
 +make[2]: Entering directory '/home/wedge/src/data/dls0/testing/node' 
 +make[3]: Entering directory '/home/wedge/src/data/dls0/testing/node/unit' 
 +rm -f *.swp *.o ../../../bin/unit-cpnode unit-mknode unit-rmnode core 
 +make[3]: Leaving directory '/home/wedge/src/data/dls0/testing/node/unit' 
 +make[2]: Leaving directory '/home/wedge/src/data/dls0/testing/node' 
 +make[2]: Entering directory '/home/wedge/src/data/dls0/testing/stack' 
 +make[3]: Entering directory '/home/wedge/src/data/dls0/testing/stack/app' 
 +rm -f *.swp *.o ../../../bin/palindrome-stack core 
 +make[3]: Leaving directory '/home/wedge/src/data/dls0/testing/stack/app' 
 +make[3]: Entering directory '/home/wedge/src/data/dls0/testing/stack/unit' 
 +rm -f *.swp *.o ../../../bin/unit-cpstack unit-isempty unit-mkstack unit-peek unit-pop unit-push unit-rmstack core 
 +make[3]: Leaving directory '/home/wedge/src/data/dls0/testing/stack/unit' 
 +make[2]: Leaving directory '/home/wedge/src/data/dls0/testing/stack' 
 +make[1]: Leaving directory '/home/wedge/src/data/dls0/testing' 
 +NODE and LIST reference implementation in place, run 'make' to build everything. 
 +lab46:~/src/data/dls0$  
 +</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: 
 + 
 +<cli> 
 +lab46:~/src/data/dls0$ make 
 +... 
 +</cli> 
 + 
 +**__Debugging__:** When using the test reference implementation, you will not be able to debug the contents of the node and list 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). 
 + 
 +===Reverting back to using your code=== 
 +If you were trying out the reference implementation to verify stack functionality, and wanted to revert back to your own code, it is as simple as: 
 + 
 +<cli> 
 +lab46:~/src/data/dls0$ make use-your-own-code 
 +Local node/list implementation restored, run 'make clean; make' to build everything. 
 +lab46:~/src/data/dls0$  
 +</cli> 
 +====List Library unit tests==== 
 +As a result of the required changes to **display()** and the incorporation of **qty**, pertinent list unit tests will be enhanced, so you can make use of them to ensure implementation compliance. 
 + 
 +Be sure to run the various list unit tests and verification scripts to see which functions have fallen out of compliance with the list struct specification changes issued in this project. The **verify-list.sh** script can be especially useful in getting a big picture view of what work is needed. 
 +====Stack library unit tests==== 
 +In **testing/stack/unit/**, you will find these files: 
 + 
 +  * **unit-mkstack.c** - unit test for **mkstack()** library function 
 +  * **unit-cpstack.c** - unit test for **cpstack()** library function 
 +  * **unit-rmstack.c** - unit test for **rmstack()** library function 
 +  * **unit-push.c** - unit test for **push()** library function 
 +  * **unit-pop.c** - unit test for **pop()** library function 
 +  * **unit-peek.c** - unit test for **peek()** library function 
 +  * **unit-isempty.c** - unit test for **isempty()** library function 
 + 
 +There are also corresponding **verify-FUNCTION.sh** scripts that will output a "MATCH"/"MISMATCH" to confirm overall conformance with the pertinent stack functionality. 
 + 
 +These are complete runnable programs (when compiled, and linked against the stack 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: Of particular importance, I want you to take a close look at:
Line 192: Line 330:
     * ask questions to get clarification!     * ask questions to get clarification!
  
 +====stack testing applications====
 +
 +===palindrome-stack===
 +Now that we've completed our stack functionality, we can use these individual functions to piece together solutions to various everyday problems where a stack could be effective (and even compare approaches to when we didn't have the benefit of a stack in solving the problem). After all, that's a big aspect to learning data structures- they open doors to new algorithms and problem solving capabilities.
 +
 +Our task (once again) will be that of palindromes (ie words/phrases that, when reversed, spell the same thing).
 +
 +This implementation will be considered an extra credit opportunity, so as to offer those who have fallen behind (but working to get caught up) a reprieve on some of the credit they've lost.
 +
 +It is also highly recommended to undertake as it will give you further experience working with these concepts.
 +
 +Note this is a DIFFERENT approach than you would have taken in the program with sll2- you're to use stack functionality to aid you with the heavy lifting. While you will still make use of list functionality for grabbing the initial input, the actual palindrome comparison processing needs to heavily involve stacks.
 +
 +=====Expected Results=====
 +To assist you in verifying a correct implementation, a fully working implementation of the node, list, and stack libraries should resemble the following (when running the respective verify script):
 +
 +====node library====
 +Here is what you should get for node:
 +
 +<cli>
 +lab46:~/src/data/dls0$ bin/verify-node.sh 
 +====================================================
 +=    Verifying Doubly-Linked Node Functionality    =
 +====================================================
 +  [mknode] Total:   5, Matches:   5, Mismatches:   0
 +  [cpnode] Total:   6, Matches:   6, Mismatches:   0
 +  [rmnode] Total:   2, Matches:   2, Mismatches:   0
 +====================================================
 + [RESULTS] Total:  13, Matches:  13, Mismatches:   0
 +====================================================
 +lab46:~/src/data/dls0$ 
 +</cli>
 +
 +As no coding changes were needed in the node library, these results should be identical to that of a fully functioning node implementation from the **dll0** project.
 +
 +====list library====
 +Here is what you should get for list:
 +
 +<cli>
 +lab46:~/src/data/dls0$ bin/verify-list.sh 
 +====================================================
 +=    Verifying Doubly-Linked List Functionality    =
 +====================================================
 +  [mklist] Total:   6, Matches:   6, Mismatches:   0
 +  [cplist] Total:  30, Matches:  30, Mismatches:   0
 +  [rmlist] Total:   3, Matches:   3, Mismatches:   0
 +  [append] Total:  22, Matches:  22, Mismatches:   0
 +  [insert] Total:  22, Matches:  22, Mismatches:   0
 +  [obtain] Total:  23, Matches:  23, Mismatches:   0
 + [display] Total:  10, Matches:  10, Mismatches:   0
 +[findnode] Total:  11, Matches:  11, Mismatches:   0
 +[sortlist] Total:   6, Matches:   6, Mismatches:   0
 +[swapnode] Total:   7, Matches:   7, Mismatches:   0
 +====================================================
 + [RESULTS] Total: 140, Matches: 140, Mismatches:   0
 +====================================================
 +lab46:~/src/data/dls0$ 
 +</cli>
 +
 +Due to the re-introduction of **qty** into list (impacting actions performed by **mklist()**, **append()**, **insert()**, and **obtain()**), along with feature additions to **display()**, those functions saw additional tests performed, so our original max total of **102** from **dll0** has now changed to **140** (ie various **qty** and **display()**-related tests adding to the previous total).
 +
 +Remember though- aside from the minor change of adding **qty** and enhancing **display()**, all remaining list functions need no change (and **mklist()/append()/insert()/obtain()** remained largely unchanged).
 +
 +====stack library====
 +Here is what you should get for stack:
 +
 +<cli>
 +lab46:~/src/data/dls0$ bin/verify-stack.sh 
 +===================================================
 +=   Verifying Doubly-Linked Stack Functionality   =
 +===================================================
 +[mkstack] Total:   3, Matches:   3, Mismatches:   0
 +[cpstack] Total:   8, Matches:   8, Mismatches:   0
 +[rmstack] Total:   3, Matches:   3, Mismatches:   0
 +   [push] Total:  30, Matches:  30, Mismatches:   0
 +    [pop] Total:  25, Matches:  25, Mismatches:   0
 +   [peek] Total:  24, Matches:  24, Mismatches:   0
 +[isempty] Total:  13, Matches:  13, Mismatches:   0
 +===================================================
 +[RESULTS] Total: 106, Matches: 106, Mismatches:   0
 +===================================================
 +lab46:~/src/data/dls0$ 
 +</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:
Line 203: Line 424:
     * 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
haas/fall2014/data/projects/dls0.1414846178.txt.gz · Last modified: 2014/11/01 12:49 by wedge