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 21:41] – [the stack] 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 76: | Line 69: | ||
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. | 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==== | + | ====buffer |
- | With a stack, there sometimes exists a need to cap its total size (especially in applications on the computer, we may have only allocated a fixed amount of space and cannot exceed it). For this reason, we will need to maintain a count of nodes in the stack (ie the underlying list). For this reason, **qty** | + | With a queue, there sometimes exists a need to cap its total size (especially in applications on the computer, we may have only allocated a fixed amount of space and cannot exceed it). For this reason, we will need to maintain a count of nodes in the queue (ie the underlying list). For this reason, |
- | Additionally, | + | Additionally, |
- | It should also be pointed out that in other applications, | + | It should also be pointed out that in other applications, |
- | ====stack error conditions==== | + | ====queue error conditions==== |
- | There are two very important operational error conditions a stack can experience: | + | There are two very important operational error conditions a queue can experience: |
- | * __stack | + | * __buffer |
- | * __stack | + | * __buffer |
=====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/ | + | |
- | There is one change (an addition) that has been made to **list.h**, and that is the return of the **qty** element: | + | |
- | <code c> | + | ====In inc/queue.h==== |
- | struct list { | + | |
- | Node *start; | + | |
- | Node *end; // pointer to end of list | + | |
- | int | + | |
- | }; | + | |
- | typedef struct list List; // because we deserve nice things | + | |
- | </ | + | |
- | + | ||
- | 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). | + | |
- | + | ||
- | From the list's point of view, its sole purpose is for show. | + | |
- | + | ||
- | 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, | + | |
- | ====In inc/stack.h==== | + | |
<code c 1> | <code c 1> | ||
- | # | + | # |
- | # | + | # |
- | #include " | + | #include " |
- | // (which relies on node) | + | |
- | struct | + | struct |
- | List *data; | + | List *data; |
- | Node *top; // pointer to node at top of stack | + | Node *front; |
- | int size; | + | Node *back; |
+ | int buffer; // maximum | ||
}; | }; | ||
- | typedef struct | + | typedef struct |
+ | |||
+ | Queue *mkqueue(int | ||
+ | Queue *cpqueue(Queue * ); // create a copy of an existing queue | ||
+ | Queue *rmqueue(Queue * ); // clear and de-allocate an existing queue | ||
- | Stack *mkstack(int ); // create new stack (of max size) | + | Queue *purge(Queue * ); // empty a given queue |
- | Stack *cpstack(Stack * ); // create | + | |
- | Stack *rmstack(Stack * ); // clear and de-allocate an existing stack | + | |
- | int | + | int |
- | int | + | int |
- | Node *peek(Stack * ); // grab (do not disconnect) top node off stack | ||
- | int isempty(Stack * ); // determine if the stack is empty or not | ||
#endif | #endif | ||
</ | </ | ||
- | For our stack implementation, | + | For our queue implementation, |
- | 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 | + | 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 |
- | peek() and isEmpty() are being implemented as an exercise to aid in your understanding of stacks. Again, avoid their use except | + | Also, while nothing |
- | If you cannot think of how to solve a problem without the use of peek()/ | + | In object-oriented programming, |
- | + | ||
- | 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() functions. Just like my warnings about using **qty** in your list solutions-- do not consider **size** as a variable for your general use. | + | |
- | + | ||
- | In object-oriented programming, | + | |
====list library==== | ====list library==== | ||
- | Againt, | + | One more enhancement is in store for our venerable |
===display() enhancements=== | ===display() enhancements=== | ||
- | You are also to implement | + | You are also to implement |
- | This means you'll need to expand the current modulus divide by 4 to one of 8. | + | This means you'll need to expand the current modulus divide by 8 to one of 16. |
The current modes are as follows: | The current modes are as follows: | ||
Line 163: | Line 137: | ||
// 2 display the list backwards, no positional values | // 2 display the list backwards, no positional values | ||
// 3 display the list backwards, with positional values | // 3 display the list backwards, with positional values | ||
+ | // 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 | ||
</ | </ | ||
- | The new modes are (you may want to add these comments to your **display.c** file): | + | The new feature is to toggle the display |
- | <code c> | + | The idea here is, when combined with the ASCII representation of the list, **display()** can become a pretty useful function for displaying strings, which could come in handy. |
- | // 4 display | + | |
- | // 5 display the list forward, with positional | + | Also, when dealing |
- | // 6 display | + | |
- | // 7 display | + | For positioned displays, this would seem to have less utility, but by having a space displayed before |
- | </ | + | |
+ | So for each of the above 8 modes, you'll have a WITH_ARROWS mode, and then a WITHOUT_ARROWS mode (leaving us with a total of 16 possible combinations). | ||
- | What has changed? In modes 4-8, instead of displaying | + | For sane implementation purposes, for our current 8 (so modes 0-7), those will be considered to be WITH_ARROWS... whereas |
- | For example, if there was a numeric 65 stored in the node , in the mode 4-7 representation, an ' | + | 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 |
==display() output examples based on mode== | ==display() output examples based on mode== | ||
Line 183: | Line 162: | ||
start -> 51 -> 49 -> 51 -> 51 -> 55 -> NULL | start -> 51 -> 49 -> 51 -> 51 -> 55 -> NULL | ||
- | ==mode | + | ==mode |
<cli> | <cli> | ||
- | 51 -> 49 -> 51 -> 51 -> 55 -> NULL | + | 5149515155 |
</ | </ | ||
- | ==mode | + | ==mode |
<cli> | <cli> | ||
- | [0] 51 -> [1] 49 -> [2] 51 -> [3] 51 -> [4] 55 -> NULL | + | [0]51 [1]49 [2]51 [3]51 [4]55 |
</ | </ | ||
- | ==mode | + | ==mode |
<cli> | <cli> | ||
- | ' | + | 31337 |
</ | </ | ||
- | ==mode | + | ==mode |
<cli> | <cli> | ||
- | [0] '3' -> [1] '1' -> [2] '3' -> [3] '3' -> [4] '7' -> NULL | + | [0]3 [1]1 [2]3 [3]3 [4]7 |
</ | </ | ||
- | ====stack library==== | + | ====queue library==== |
- | In **src/stack/**, you will find skeletons of the above prototyped functions, hollowed out in anticipation of being made operational. | + | In **src/queue/**, 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, | Figure out what is going on, the connections, | ||
- | Again, your 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. | + | Again, your queue is to utilize the list for its underlying data storage operations. This is what the queue's **data** list pointer is to be used for. |
====Reference Implementation==== | ====Reference Implementation==== | ||
Line 229: | 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 271: | Line 220: | ||
<cli> | <cli> | ||
- | lab46: | + | lab46: |
... | ... | ||
</ | </ | ||
Line 278: | 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 316: | 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 355: | Line 273: | ||
<cli> | <cli> | ||
- | lab46: | + | lab46: |
==================================================== | ==================================================== | ||
= Verifying Doubly-Linked List Functionality | = Verifying Doubly-Linked List Functionality | ||
Line 365: | 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 410: | 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 438: | 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. | ||
+ |