This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
haas:fall2014:data:projects:dls0 [2014/11/03 14:22] – [Reference Implementation] wedge | haas: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 | + | * __revision |
+ | * logic error in **unit-cpstack**, | ||
+ | * 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 " | ||
+ | * 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/ | ||
+ | * **testing/ | ||
+ | * __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. | 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. | ||
Line 222: | Line 234: | ||
===Using the test reference implementation=== | ===Using the test reference implementation=== | ||
- | You'll notice that, upon running **make help** in the base-level Makefile, the following new option appears | + | You'll notice that, upon running **make help** in the base-level Makefile, the following new options appear |
<cli> | <cli> | ||
** ** | ** ** | ||
- | ** make test-reference | + | ** make use-test-reference |
+ | ** make use-your-own-code | ||
** ** | ** ** | ||
</ | </ | ||
- | In order to make use of it, you'll need to run **make test-reference** from the base of your **dls0** project directory, as follows: | + | In order to make use of it, you'll need to run **make |
<cli> | <cli> | ||
- | lab46: | + | lab46: |
make[1]: Entering directory '/ | make[1]: Entering directory '/ | ||
make[2]: Entering directory '/ | make[2]: Entering directory '/ | ||
Line 275: | Line 288: | ||
... | ... | ||
</ | </ | ||
- | |||
- | ===Caveats=== | ||
- | **__NOTE__: | ||
- | |||
- | You can tell from the compile output if it is in place (none of the individual node or list library source files get built, only the libraries themselves are assembled). | ||
- | |||
- | And again, clearing out the test reference implementation is as easy as running **make clean**; if you have a working node and list implementation (from successfully completing the prerequisite project(s)), | ||
- | |||
- | This could also be a good way to verify that your node and list implementations are up to par, as you can now run the unit tests and verification scripts against your implementation, | ||
**__Debugging__: | **__Debugging__: | ||
- | ===Keeping Reference Implementation Longer Term=== | + | ===Reverting back to using your code=== |
- | Let's say, for whatever reason, | + | If you were trying out the reference implementation |
- | + | ||
- | This is possible, and all it involves | + | |
- | If you'd like to do this: | + | < |
- | + | lab46:~/src/data/dls0$ make use-your-own-code | |
- | Edit **src/node/Makefile** and **src/list/Makefile**, at the bottom of both files you'll see: | + | Local node/ |
- | + | lab46:~/src/ | |
- | < | + | </cli> |
- | clean: | + | |
- | rm -f *.swp *.o $(OBJ) core | + | |
- | </ | + | |
- | + | ||
- | Let's say you want to keep all of the reference implementation around for both node and list. To do that, change the **clean** rule in both files as follows: | + | |
- | + | ||
- | < | + | |
- | clean: | + | |
- | rm -f *.swp core | + | |
- | </code> | + | |
- | + | ||
- | We basically removed any and all references to the compiled object files " | + | |
- | + | ||
- | This isn't something I would consider a recommended action- it really would only be useful for those who have not successfully completed prior projects, and are looking to not fall further behind. If you've got a working node and list implementation (and it passes all the unit test and verification scripts), use yours. | + | |
====List Library unit tests==== | ====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. | 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==== | ====Stack library unit tests==== | ||
In **testing/ | In **testing/ | ||
Line 353: | Line 342: | ||
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. | 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, | ||
+ | |||
+ | ====node library==== | ||
+ | Here is what you should get for node: | ||
+ | |||
+ | <cli> | ||
+ | lab46: | ||
+ | ==================================================== | ||
+ | = Verifying Doubly-Linked Node Functionality | ||
+ | ==================================================== | ||
+ | [mknode] Total: | ||
+ | [cpnode] Total: | ||
+ | [rmnode] Total: | ||
+ | ==================================================== | ||
+ | | ||
+ | ==================================================== | ||
+ | lab46: | ||
+ | </ | ||
+ | |||
+ | 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: | ||
+ | ==================================================== | ||
+ | = Verifying Doubly-Linked List Functionality | ||
+ | ==================================================== | ||
+ | [mklist] Total: | ||
+ | [cplist] Total: | ||
+ | [rmlist] Total: | ||
+ | [append] Total: | ||
+ | [insert] Total: | ||
+ | [obtain] Total: | ||
+ | | ||
+ | [findnode] Total: | ||
+ | [sortlist] Total: | ||
+ | [swapnode] Total: | ||
+ | ==================================================== | ||
+ | | ||
+ | ==================================================== | ||
+ | lab46: | ||
+ | </ | ||
+ | |||
+ | Due to the re-introduction of **qty** into list (impacting actions performed by **mklist()**, | ||
+ | |||
+ | Remember though- aside from the minor change of adding **qty** and enhancing **display()**, | ||
+ | |||
+ | ====stack library==== | ||
+ | Here is what you should get for stack: | ||
+ | |||
+ | <cli> | ||
+ | lab46: | ||
+ | =================================================== | ||
+ | = | ||
+ | =================================================== | ||
+ | [mkstack] Total: | ||
+ | [cpstack] Total: | ||
+ | [rmstack] Total: | ||
+ | | ||
+ | [pop] Total: | ||
+ | | ||
+ | [isempty] Total: | ||
+ | =================================================== | ||
+ | [RESULTS] Total: 106, Matches: 106, Mismatches: | ||
+ | =================================================== | ||
+ | lab46: | ||
+ | </ | ||
=====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: |