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:33] – [conceptualizing a 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 54: | Line 47: | ||
Similarly, queues possess no mandatory orientation, | Similarly, queues possess no mandatory orientation, | ||
- | ====the | + | ====the |
- | The stack data structure presents certain advantages that encourages its use in solving problems (why do we stack a bunch of papers all in the same place to create piles? Why is that more advantageous than giving each one its own unique desk space?), and we accomplish that by its compositional definition: | + | The queue data structure presents certain advantages that encourages its use in solving problems (why is the notion of forming lines important? What problems does that solve? How are resources |
- | * a stack has a **top**, basically | + | * a queue has a **back** and a **front**, basically node pointers |
- | * to put an item on the stack, we **push** it there. So one of the functions we'll be implementing is **push()**, which will take the node we wish to place on the given stack, and push will handle all the necessary coordination with its underlying list. | + | * to put an item on the queue, we **enqueue** it (place it at the back of the queue). So one of the functions we'll be implementing is **enqueue()**, which will take the node we wish to place on the given queue, and enqueue |
- | * to get an item off of the stack, we **pop** it. In our **pop()** function, we grab the **top** node off the stack (this also translates into a set of list-level transactions that our **pop()** function will handle for us). | + | * to get an item off of the queue, we **dequeue** it. In our **dequeue()** function, we grab the **front** node off the stack (this also translates into a set of list-level transactions that our **dequeue()** function will handle for us). |
- | These qualities cause the stack to be described as a LIFO (or FILO) structure: | + | These qualities cause the queue to be described as a FIFO (or LILO) structure: |
- | * **LIFO**: **L**ast **I**n **F**irst **O**ut | + | * **FIFO**: **F**irst **I**n **F**irst **O**ut |
- | * **FILO**: **F**irst **I**n **L**ast **O**ut | + | * **LILO**: **L**ast **I**n **L**ast **O**ut |
- | And that describes what is conceptually going on-- if we can ONLY access | + | And that describes what is conceptually going on-- if we can ONLY put our data on at one end (the back), and grab our data from the other (the front), the data most immediately available to us is that which we placed there first (hence the first one we pushed in would be the first one we get back when dequeueing |
This concept is very important, and being aware of it can be of significant strategic importance when going about solving problems (and seeing its pattern proliferate in nature). | This concept is very important, and being aware of it can be of significant strategic importance when going about solving problems (and seeing its pattern proliferate in nature). | ||
- | With that said, the existence of **top**, along with the core **push()** and **pop()** functions defines the minimal necessary requiments to interface with a stack. Sometimes we'll see additional actions sneak in. While these may be commonly associated with stacks, they should not be confused as core requiments of a stack: | + | With that said, the existence of **front**, **back**, along with the core **enqueue()** and **dequeue()** functions defines the minimal necessary requiments to interface with a queue. Sometimes we'll see additional actions sneak in. While these may be commonly associated with queue, they should not be confused as core requiments of a queue: |
- | * **peek**: the ability | + | * **purge**: a way to quickly empty out a queue (evacuate its contents-- note this is partially similar in nature |
- | | + | |
- | 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 queue, 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. | 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 |
- | Stack *mkstack(int | + | Queue *mkqueue(int ); // create new queue (of max size) |
- | Stack *cpstack(Stack * | + | Queue *cpqueue(Queue * ); // create a copy of an existing |
- | Stack *rmstack(Stack * | + | Queue *rmqueue(Queue * ); // clear and de-allocate an existing |
- | int | + | Queue *purge(Queue * ); // empty a given queue |
- | 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 and underflows). | + | |
- | + | ||
- | 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. | + | |
- | If you cannot think of how to solve a problem without | + | 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). |
- | 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. | + | 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 |
- | In object-oriented programming, | + | 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 164: | 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 184: | 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 230: | 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 272: | Line 220: | ||
<cli> | <cli> | ||
- | lab46: | + | lab46: |
... | ... | ||
</ | </ | ||
Line 279: | 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 317: | 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 273: | ||
<cli> | <cli> | ||
- | lab46: | + | lab46: |
==================================================== | ==================================================== | ||
= Verifying Doubly-Linked List Functionality | = Verifying Doubly-Linked List Functionality | ||
Line 366: | 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 411: | 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 439: | 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. | ||
+ |