This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
haas:fall2014:data:projects:dlq0 [2014/11/08 11:20] – [Stack library unit tests] wedge | haas:fall2014:data:projects:dlq0 [2014/11/19 14:43] (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 |
+ | * **unit-enqueue.c** had a bunch of references to " | ||
+ | * the prototype for **rmqueue()** was missing from the **inc/ | ||
+ | * __revision 2__: unit-mkqueue tweaks and verify-queue.sh enhancements (20141119) | ||
+ | * While I was debugging some code I noticed that the **unit-mkqueue.c** logic was not flexible enough in handling implementations where front was pointing to the end of the list. I have added logic to enable proper checking of back/front, regardless of underlying list orientation (FIXED). | ||
+ | * verify-queue.sh enhanced to show absolute totals, even if improper implementations cause the unit test not to perform the full run. | ||
=====Objective===== | =====Objective===== | ||
- | In this project, resume our conceptual journey and explore another data structure: | + | In this project, resume our conceptual journey and explore another data structure: |
=====Background===== | =====Background===== | ||
- | A **stack** is considered one of the most important data structures, along with **queues** (next week's project) and trees. And it is largely because of how often we find them playing out in nature or our day-to-day lives. | + | A **queue** is considered one of the most important data structures, along with **stack** (last week's project) and trees. And it is largely because of how often we find them playing out in nature or our day-to-day lives. |
- | The word "stack" is [[https:// | + | The word "queue" is [[https:// |
- | + | ||
- | * (generically): | + | |
- | * (computing): | + | |
- | + | ||
- | Additionally, | + | |
- | * shuffle or **arrange** (a deck of cards) dishonestly **so as to gain** an unfair **advantage** | + | |
- | + | ||
- | Or, to distill it out: | + | |
- | + | ||
- | * arrange so as to gain advantage | + | |
- | + | ||
- | Combining with our previous definitions, | + | |
- | + | ||
- | * a set of storage locations that are arranged in such a way so as to give us an advantage- the most recently stored item (the last to be placed onto the stack) is the first to be retrieved. | + | |
+ | * (generically): | ||
+ | * (computing): | ||
====Lists and Nodes==== | ====Lists and Nodes==== | ||
So, how does all this list and node stuff play into our queue implementation? | So, how does all this list and node stuff play into our queue implementation? | ||
Line 161: | Line 154: | ||
For sane implementation purposes, for our current 8 (so modes 0-7), those will be considered to be WITH_ARROWS... whereas the remaining 8 combinations (8-15) will be WITHOUT_ARROWS. All other mode features will map in place (if you recognize the binary pattern I've been following you'll hopefully see how trivial this change (and the previous one) will be). | For sane implementation purposes, for our current 8 (so modes 0-7), those will be considered to be WITH_ARROWS... whereas the remaining 8 combinations (8-15) will be WITHOUT_ARROWS. All other mode features will map in place (if you recognize the binary pattern I've been following you'll hopefully see how trivial this change (and the previous one) will be). | ||
+ | |||
+ | Also, when not displaying arrows, no NULL values will be displayed at all; this means that in the event we are running **display()** on a NULL or empty list, nothing but a newline should be displayed. | ||
==display() output examples based on mode== | ==display() output examples based on mode== | ||
Line 217: | Line 212: | ||
<cli> | <cli> | ||
lab46: | lab46: | ||
- | make[1]: Entering directory '/ | + | ... |
- | make[2]: Entering directory '/ | + | |
- | rm -f .*.sw[op] *.swp *.save* *~ *.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 '/ | + | |
- | make[2]: Entering directory '/ | + | |
- | rm -f .*.sw[op] *.swp *.save* *~ *.o cp.o mk.o rm.o core | + | |
- | make[2]: Leaving directory '/ | + | |
- | make[2]: Entering directory '/ | + | |
- | rm -f .*.sw[op] *.swp *.save* *~ *.o cp.o dequeue.o enqueue.o mk.o purge.o rm.o core | + | |
- | make[2]: Leaving directory '/ | + | |
- | make[2]: Entering directory '/ | + | |
- | rm -f .*.sw[op] *.swp *.save* *~ *.o cp.o isempty.o mk.o peek.o pop.o push.o rm.o core | + | |
- | make[2]: Leaving directory '/ | + | |
- | make[1]: Leaving directory '/ | + | |
- | make[1]: Entering directory '/ | + | |
- | make[2]: Entering directory '/ | + | |
- | make[3]: Entering directory '/ | + | |
- | rm -f *.swp *.o ../ | + | |
- | make[3]: Leaving directory '/ | + | |
- | make[2]: Leaving directory '/ | + | |
- | make[2]: Entering directory '/ | + | |
- | make[3]: Entering directory '/ | + | |
- | rm -f *.swp *.o ../ | + | |
- | make[3]: Leaving directory '/ | + | |
- | make[2]: Leaving directory '/ | + | |
- | make[2]: Entering directory '/ | + | |
- | make[3]: Entering directory '/ | + | |
- | rm -f .*.sw[op] *.swp *.save* *~ *.o ../ | + | |
- | make[3]: Leaving directory '/ | + | |
- | make[2]: Leaving directory '/ | + | |
- | make[2]: Entering directory '/ | + | |
- | make[3]: Entering directory '/ | + | |
- | rm -f *.swp *.o ../ | + | |
- | make[3]: Leaving directory '/ | + | |
- | make[3]: Entering directory '/ | + | |
- | rm -f *.swp *.o ../ | + | |
- | make[3]: Leaving directory '/ | + | |
- | make[2]: Leaving directory '/ | + | |
- | make[1]: Leaving directory '/ | + | |
NODE and LIST reference implementation in place, run ' | NODE and LIST reference implementation in place, run ' | ||
lab46: | lab46: | ||
Line 270: | Line 227: | ||
===Reverting back to using your code=== | ===Reverting back to using your code=== | ||
- | If you were trying out the reference implementation to verify | + | If you were trying out the reference implementation to verify |
<cli> | <cli> | ||
Line 307: | Line 264: | ||
* ask questions to get clarification! | * ask questions to get clarification! | ||
- | ====stack testing applications==== | ||
- | |||
- | ===palindrome-stack=== | ||
- | Now that we've completed our stack functionality, | ||
- | |||
- | Our task (once again) will be that of palindromes (ie words/ | ||
- | |||
- | This implementation will be considered an extra credit opportunity, | ||
- | |||
- | 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===== | =====Expected Results===== | ||
- | To assist you in verifying a correct implementation, | + | To assist you in verifying a correct implementation, |
- | + | ||
- | ====node library==== | + | |
- | Here is what you should get for node: | + | |
- | + | ||
- | < | + | |
- | 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==== | ====list library==== | ||
Line 356: | Line 283: | ||
[insert] Total: | [insert] Total: | ||
[obtain] Total: | [obtain] Total: | ||
- | | + | |
[findnode] Total: | [findnode] Total: | ||
[sortlist] Total: | [sortlist] Total: | ||
[swapnode] Total: | [swapnode] Total: | ||
==================================================== | ==================================================== | ||
- | | + | |
==================================================== | ==================================================== | ||
lab46: | lab46: | ||
</ | </ | ||
- | Due to the re-introduction of **qty** into list (impacting actions performed by **mklist()**, | + | With the added feature to **display()**, |
- | Remember though- | + | But aside from this change |
- | + | ||
- | ====stack library==== | + | |
- | Here is what you should get for stack: | + | |
- | + | ||
- | < | + | |
- | lab46: | + | |
- | =================================================== | + | |
- | = | + | |
- | =================================================== | + | |
- | [mkstack] Total: | + | |
- | [cpstack] Total: | + | |
- | [rmstack] Total: | + | |
- | | + | |
- | [pop] Total: | + | |
- | | + | |
- | [isempty] Total: | + | |
- | =================================================== | + | |
- | [RESULTS] Total: 106, Matches: 106, Mismatches: | + | |
- | =================================================== | + | |
- | lab46: | + | |
- | </ | + | |
====queue library==== | ====queue library==== | ||
Line 401: | Line 307: | ||
[mkqueue] Total: | [mkqueue] Total: | ||
[cpqueue] Total: | [cpqueue] Total: | ||
+ | [rmqueue] Total: | ||
[purge] Total: | [purge] Total: | ||
[enqueue] Total: | [enqueue] Total: | ||
[dequeue] Total: | [dequeue] Total: | ||
=================================================== | =================================================== | ||
- | [RESULTS] Total: | + | [RESULTS] Total: |
=================================================== | =================================================== | ||
lab46: | lab46: |