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/07 22:19] – [stack library] 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 92: | Line 85: | ||
=====Project Overview===== | =====Project Overview===== | ||
- | 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 queue data structure atop of our recently re-implemented linked list (the doubly linked list). |
====In inc/ | ====In inc/ | ||
Line 126: | Line 119: | ||
This is necessary so that we can free up the return value of **enqueue()** and **dequeue()** to be used for status (ie look out for buffer overruns and underruns). | This is necessary so that we can free up the return value of **enqueue()** and **dequeue()** to be used for status (ie look out for buffer overruns and underruns). | ||
- | **purge()** is being implemented as an exercise to aid in your understanding of queues. 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 **purge()**. | + | Also, while nothing is stopping you from doing so, the idea here is that things like **buffer** and the underlying list **qty** in queue transactions will **NOT** be accessed outside of the **enqueue()** and **dequeue()** functions. Just like my warnings about using **qty** in your list solutions |
- | + | ||
- | If you cannot think of how to solve a problem without the use of **purge()**, | + | |
- | + | ||
- | Also, while nothing is stopping you from doing so, the idea here is that things like **buffer** and the underlying list **qty** in queue transactions will **NOT** be accessed outside of the **enqueue()** and **dequeue()** functions. Just like my warnings about using **qty** in your list solutions-- do not consider **buffer** as a variable for your general use. | + | |
In object-oriented programming, | In object-oriented programming, | ||
Line 165: | 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 208: | ||
</ | </ | ||
- | 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: | + | In order to make use of it, you'll need to run **make use-test-reference** from the base of your **dlq0** project directory, as follows: |
<cli> | <cli> | ||
- | lab46: | + | lab46: |
- | make[1]: Entering directory '/ | + | ... |
- | make[2]: Entering directory '/ | + | |
- | 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 '/ | + | |
- | make[2]: Entering directory '/ | + | |
- | rm -f *.swp *.o cp.o mk.o rm.o core | + | |
- | make[2]: Leaving directory '/ | + | |
- | make[2]: Entering directory '/ | + | |
- | rm -f *.swp *.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 *.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 259: | Line 220: | ||
<cli> | <cli> | ||
- | lab46: | + | lab46: |
... | ... | ||
</ | </ | ||
Line 266: | 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> | ||
- | lab46: | + | lab46: |
Local node/list implementation restored, run 'make clean; make' to build everything. | Local node/list implementation restored, run 'make clean; make' to build everything. | ||
- | lab46: | + | lab46: |
</ | </ | ||
====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()**, |
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. | 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==== | + | ====Queue library unit tests==== |
- | In **testing/stack/unit/**, you will find these files: | + | In **testing/queue/unit/**, you will find these files: |
- | * **unit-mkstack.c** - unit test for **mkstack()** library function | + | * **unit-mkqueue.c** - unit test for **mkqueue()** library function |
- | * **unit-cpstack.c** - unit test for **cpstack()** library function | + | * **unit-cpqueue.c** - unit test for **cpqueue()** library function |
- | * **unit-rmstack.c** - unit test for **rmstack()** library function | + | * **unit-rmqueue.c** - unit test for **rmqueue()** library function |
- | * **unit-push.c** - unit test for **push()** library function | + | * **unit-enqueue.c** - unit test for **enqueue()** library function |
- | * **unit-pop.c** - unit test for **pop()** library function | + | * **unit-dequeue.c** - unit test for **dequeue()** library function |
- | * **unit-peek.c** - unit test for **peek()** library function | + | * **unit-purge.c** |
- | * **unit-isempty.c** - unit test for **isempty()** library function | + | |
There are also corresponding **verify-FUNCTION.sh** scripts that will output a " | There are also corresponding **verify-FUNCTION.sh** scripts that will output a " | ||
- | 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). | + | These are complete runnable programs (when compiled, and linked against the queue 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 304: | 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 343: | Line 273: | ||
<cli> | <cli> | ||
- | lab46: | + | lab46: |
==================================================== | ==================================================== | ||
= Verifying Doubly-Linked List Functionality | = Verifying Doubly-Linked List Functionality | ||
Line 353: | 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 398: | 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: | ||
Line 426: | Line 336: | ||
* Track/ | * Track/ | ||
* 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. | ||
+ |