This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
haas:fall2022:data:projects:dlq0 [2017/11/06 18:13] – created - external edit 127.0.0.1 | haas:fall2022:data:projects:dlq0 [2022/11/19 17:41] (current) – [RUBRIC] wedge | ||
---|---|---|---|
Line 4: | Line 4: | ||
</ | </ | ||
- | ======Project: DLQ0====== | + | ======PROJECT: Lists - Doubly-Linked Queues (DLQ0)====== |
- | =====Errata===== | + | =====OBJECTIVE===== |
- | This section | + | Onto Queues! Another very commonly used data structure, we will be building it atop our list. |
- | * __revision #__: < | + | Don't forget to contribute to project documentation! That helps to ensure everyone is invested in the project. |
- | =====Objective===== | + | =====OVERVIEW===== |
- | In this project, resume | + | Our queue, like our stack, will in many ways be a restricted-access list: access with the queue functions will only manipulate the list at certain points, creating a consistency we don't have with full-access lists. |
- | =====Background===== | + | Queues are a First In, Last Out structure |
- | A **queue** is considered one of the most important data structures, along with **stack** | + | |
- | The word " | + | =====UPGRADING===== |
+ | To assist with consistency across all implementations, | ||
- | * (generically): a line or sequence of items awaiting their turn to be attended to or to proceed | + | Simply go into the project base directory, and run: |
- | * (computing): | + | |
- | ====Lists and Nodes==== | + | <cli> |
- | So, how does all this list and node stuff play into our queue implementation? | + | lab46: |
+ | </ | ||
- | Well, like stacks, we're going to build the queue ON TOP OF lists (which are composed | + | =====EDIT===== |
+ | You will want to go [[/ | ||
- | Therefore, a queue is a data structure that stores its data in a list (which consists of nodes), and we apply various rules/restrictions on our access of that list data. | + | * [[/notes/data/ |
- | The concept of restricting access is a very important one- which we did with our list as well (limiting our access to the list through the use of **append()**, | + | {{page> |
- | * __error reduction__: | + | =====SUBMISSION===== |
- | * __performance__: by restricting our available choices, the edge cases we have to check for are reduced, and in ideal situations, the average case moves closer to the best case. | + | To be successful in this project, the following criteria |
- | ====conceptualizing a queue==== | + | * Project must be submit on time, by the deadline. |
- | It is common | + | * Late submissions will lose 33% credit per day, with the submission window closing on the 3rd day following the deadline. |
+ | * All code must compile cleanly (no warnings or errors) | ||
+ | * Compile with the **-Wall** and **--std=gnu18** compiler flags | ||
+ | * all requested functionality | ||
+ | * Executed programs must display in a manner similar to provided output | ||
+ | * output | ||
+ | * Processing must be correct based on input given and output requested | ||
+ | * Output, if applicable, must be correct based on values input | ||
+ | * Code must be nicely and consistently indented | ||
+ | * Code must be consistently written, to strive for readability from having | ||
+ | * Code must be commented | ||
+ | * Any "to be implemented" | ||
+ | * these " | ||
+ | * Sufficient | ||
+ | * No global variables (without instructor approval), no goto statements, no calling of main()! | ||
+ | * Track/ | ||
+ | * Submit | ||
- | Although we've commonly viewed lists horizontally (from left to right), there is absolutely nothing requiring this positional orientation. | + | ====Submit Tool Usage==== |
+ | Let's say you have completed | ||
+ | submit, you would do the following: | ||
- | Similarly, queues possess no mandatory orientation, | + | < |
+ | lab46: | ||
+ | </ | ||
- | ====the queue==== | + | You should get some sort of confirmation indicating successful submission |
- | The queue data structure presents certain advantages that encourages its use in solving problems (why is the notion | + | if all went according to plan. If not, check for typos and or locational |
+ | mismatches. | ||
- | * a queue has a **back** and a **front**, basically node pointers that constantly point to the back and front node in the queue (equivalent to the underlying list's closing and initial pointers, respectively). | + | =====RUBRIC===== |
- | * 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()**, | + | I'll be evaluating |
- | * to get an item off of the queue, we **dequeue** it. In our **dequeue()** function, we grab the **front** node off the queue (this also translates into a set of list-level transactions that our **dequeue()** function will handle for us). | + | |
- | These qualities cause the queue to be described as a FIFO (or LILO) structure: | + | < |
- | * **FIFO**: **F**irst **I**n **F**irst **O**ut | + | 91:dlq0:final tally of results |
- | * **LILO**: **L**ast **I**n **L**ast **O**ut | + | *: |
- | + | *:dlq0:clean compile, no compiler messages [13/13] | |
- | 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 enqueued would be the first one we get back when we dequeue it). | + | *:dlq0: |
- | + | *:dlq0: | |
- | This concept is very important, and being aware of it can be of significant strategic importance when going about solving problems | + | *:dlq0: |
- | + | *:dlq0:code tracked in lab46 semester repo [7/7] | |
- | With that said, the existence of **front**, **back**, along with the core **enqueue()** and **dequeue()** functions defines the minimal necessary requirements | + | |
- | + | ||
- | * **purge**: a way to quickly empty out a queue (evacuate its contents-- note this is partially similar in nature to what our **rmqueue()** function will do; only we won't take it the extra step of de-allocating and NULLifying the queue pointer). | + | |
- | * this will be similar in nature to the list's **empty()** function, which properly clears a list to an empty state; only, **purge()** is operating at the queue level. | + | |
- | + | ||
- | 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, | + | |
- | + | ||
- | 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. | + | |
- | + | ||
- | ====buffer size can matter==== | + | |
- | + | ||
- | 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, we continue to make use of the list' | + | |
- | + | ||
- | Additionally, | + | |
- | + | ||
- | It should also be pointed out that in other applications, | + | |
- | + | ||
- | ====queue error conditions==== | + | |
- | There are two very important operational error conditions a queue can experience: | + | |
- | + | ||
- | * __buffer **over**run__: this is the situation where the quantity of the list is equal to the configured queue buffer, and we try to enqueue another node onto the queue. | + | |
- | * __buffer **under**run__: this is the situation where the queue is empty, yet we still try to dequeue a value from it. | + | |
- | + | ||
- | =====Project Overview===== | + | |
- | + | ||
- | 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/data.h==== | + | |
- | Building on the **data.h** header file introduced in dls0, a section of status codes has been added for queues: | + | |
- | + | ||
- | <code c> | + | |
- | ////////////////////////////////////////////////////////////////////// | + | |
- | // | + | |
- | // Status codes for the doubly linked queue implementation | + | |
- | // | + | |
- | # | + | |
- | # | + | |
- | # | + | |
- | # | + | |
- | # | + | |
- | # | + | |
- | # | + | |
- | # | + | |
- | # | + | |
</ | </ | ||
- | ====In inc/ | + | ===Pertaining to the collaborative authoring of project documentation=== |
- | <code c 1> | + | * each class member is to participate in the contribution of relevant information and formatting of the documentation |
- | #ifndef _QUEUE_H | + | * minimal member contributions consist of: |
- | #define _QUEUE_H | + | * near the class average edits (a value of at least four productive edits) |
+ | * near the average class content change average (a value of at least 256 bytes (absolute value of data content change)) | ||
+ | * near the class content contribution average (a value of at least 1kiB) | ||
+ | * no adding in one commit then later removing in its entirety for the sake of satisfying edit requirements | ||
+ | * adding and formatting data in an organized fashion, aiming to create an informative and readable document that anyone in the class can reference | ||
+ | * content contributions will be factored into a documentation coefficient, | ||
+ | * no contributions, | ||
+ | * less than minimum contributions is 0.75 | ||
+ | * met minimum contribution threshold is 1.00 | ||
- | ////////////////////////////////////////////////////////////////////// | + | ===Additionally=== |
- | // | + | |
- | // Queue relies on list (which relies on node) to work. | + | |
- | // | + | |
- | #include " | + | |
- | + | ||
- | ////////////////////////////////////////////////////////////////////// | + | |
- | // | + | |
- | // Define the queue struct | + | |
- | // | + | |
- | struct queue { | + | |
- | Node *front; | + | |
- | Node *back; | + | |
- | List *data; | + | |
- | ulli buffer; | + | |
- | }; | + | |
- | + | ||
- | code_t | + | |
- | code_t | + | |
- | code_t | + | |
- | + | ||
- | code_t | + | |
- | + | ||
- | code_t | + | |
- | code_t | + | |
- | + | ||
- | #endif | + | |
- | </ | + | |
- | + | ||
- | For our queue implementation, | + | |
- | + | ||
- | This is necessary so that we can free up the return value of **enqueue()** and **dequeue()** to be used for status codes (ie look out for buffer overruns and underruns). | + | |
- | + | ||
- | 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 (save for **display()** when showing position values in a backwards orientation)-- do not consider **buffer** as a variable for your general use. | + | |
- | + | ||
- | In object-oriented programming, | + | |
- | + | ||
- | ====queue library==== | + | |
- | In **src/ | + | |
- | + | ||
- | Figure out what is going on, the connections, | + | |
- | + | ||
- | Again, your queue is to utilize the list for its underlying data storage operations. This is what the queue' | + | |
- | + | ||
- | ====Queue library unit tests==== | + | |
- | In **unit/ | + | |
- | + | ||
- | * **unit-mkqueue.c** - unit test for **mkqueue()** library function | + | |
- | * **unit-enqueue.c** - unit test for **enqueue()** library function | + | |
- | * **unit-dequeue.c** - unit test for **dequeue()** library function | + | |
- | * **unit-cpqueue.c** - unit test for **cpqueue()** library function | + | |
- | * **unit-rmqueue.c** - unit test for **rmqueue()** library function | + | |
- | * **unit-purge.c** | + | |
- | + | ||
- | There are also corresponding **verify-FUNCTION.sh** scripts that will output a " | + | |
- | + | ||
- | 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: | + | |
- | + | ||
- | * the source code to each of these unit tests | + | |
- | * the purpose of these programs is to validate the correct functionality of the respective library functions | + | |
- | * follow the logic | + | |
- | * make sure you understand what is going on | + | |
- | * ask questions to get clarification! | + | |
- | * the output from these programs once compiled and ran | + | |
- | * analyze the output | + | |
- | * make sure you understand what is going on | + | |
- | * ask questions to get clarification! | + | |
- | + | ||
- | =====Expected Results===== | + | |
- | To assist you in verifying a correct implementation, | + | |
- | + | ||
- | + | ||
- | + | ||
- | ====queue library==== | + | |
- | Here is what you should get for queue: | + | |
- | + | ||
- | < | + | |
- | lab46: | + | |
- | ====================================================== | + | |
- | = Verifying Doubly-Linked Queue Functionality | + | |
- | ====================================================== | + | |
- | | + | |
- | | + | |
- | | + | |
- | | + | |
- | | + | |
- | | + | |
- | ====================================================== | + | |
- | | + | |
- | ====================================================== | + | |
- | lab46: | + | |
- | </ | + | |
- | =====Submission===== | + | * Solutions not abiding |
- | {{page> | + | * Solutions |
+ | * Solutions not utilizing indentation to promote scope and clarity or otherwise maintaining consistency in code style and presentation will be subject to a 25% overall deduction | ||
+ | * Solutions not organized and easy to read (assume a terminal at least 90 characters wide, 40 characters tall) are subject to a 25% overall deduction | ||