User Tools

Site Tools


haas:fall2022:data:projects:dlq0

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
haas:fall2022:data:projects:dlq0 [2017/11/06 18:13] – created - external edit 127.0.0.1haas:fall2022:data:projects:dlq0 [2022/11/19 17:41] (current) – [RUBRIC] wedge
Line 4: Line 4:
 </WRAP> </WRAP>
  
-======Project: DLQ0======+======PROJECTLists - Doubly-Linked Queues (DLQ0)======
  
-=====Errata===== +=====OBJECTIVE===== 
-This section will document any updates applied to the project since original release:+Onto Queues! Another very commonly used data structure, we will be building it atop our list.
  
-  * __revision #__: <description> (DATESTRING)+Don't forget to contribute to project documentation! That helps to ensure everyone is invested in the project.
  
-=====Objective===== +=====OVERVIEW===== 
-In this projectresume our conceptual journey and explore another data structurequeues.+Our queuelike our stack, will in many ways be a restricted-access listaccess 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 InLast Out structure (or Last In, First Out), and understanding the value that provides is key to effectively leveraging this data structure.
-A **queue** is considered one of the most important data structuresalong with **stack** (last week's project), trees, and hash tables. And it is largely because of how often we find them playing out in nature or in our day-to-day lives.+
  
-The word "**queue**" is [[https://www.google.com/search?&q=define%3Aqueue&ie=utf-8&oe=utf-8|defined]] as:+=====UPGRADING===== 
 +To assist with consistency across all implementations, project files for use with this project, along with the integration of the work you did on the last project, is made possible via a special recipe in the Makefile.
  
-  * (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): a list of data items, commands, etc., stored so as to be retrievable in a definite order, usually the order of insertion+
  
-====Lists and Nodes==== +<cli> 
-So, how does all this list and node stuff play into our queue implementation?+lab46:~/src/SEMESTER/DESIG/prevPROJECT$ make upgrade-dlq0 
 +</cli>
  
-Well, like stacks, we're going to build the queue ON TOP OF lists (which are composed of nodes).+=====EDIT===== 
 +You will want to go [[/notes/data/fall2022/projects/dlq0|here]] to edit and fill in the various sections of the document:
  
-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/fall2022/projects/dlq0|https://lab46.g7n.org/notes/data/fall2022/projects/dlq0]]
  
-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()**, **insert()**, and **obtain()** versus manipulating the there/back pointers manually all the time). By limiting how we access the data, we give ourselves certain algorithmic advantages:+{{page>notes:data:fall2022:projects:dlq0&nouser&nodate&nomdate}}
  
-  * __error reduction__: if have a small set of operations that can do one thingand do their one thing extremely well (**insert()**, **append()**, and **obtain()** again, for instance), we can then rely on them to do the low-level grunt work, freeing us up to accomplish higher level tasks (such as **sorting** or **swapping**), or even things like determining if a word is a **palindrome**, or just preserving order of items during storage. +=====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 (or their equivalentmust be met:
  
-====conceptualizing a queue==== +  * Project must be submit on time, by the deadline. 
-It is common to think of queue as horizontal objectmuch like a line of people that need to be services (such as checkout line at the grocery storeor line at the bank).+    * 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  must conform  to stated  requirements (either on  this document or  in comment banner in  source code files themselves). 
 +  * Executed programs must display in manner similar to provided output 
 +    * output  formatted where applicable,  must match  that of  project requirements 
 +  * 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 consistent style throughout 
 +  * Code must be commented 
 +    * Any "to be implemented" comments **MUST** be removed 
 +      * these   "to  be  implemented"   comments,  if  still  present  at evaluation time, will result in points being deducted. 
 +      * Sufficient  comments  explaining  the point  of  provided   logic **MUST** be present 
 +  * No global variables (without instructor approval)no goto statements, no calling of main()! 
 +  * Track/version the source code in your lab46 semester repository 
 +  * Submit  copy of  your source code to  me using the  **submit** tool (**make submit** on lab46 will do thisby the deadline.
  
-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  work  on the  project, and  are ready  to 
 +submityou  would do the following:
  
-Similarly, queues possess no mandatory orientation, but we do usually visualize them as horizontal entities, largely because that's how we commonly find ourselves entangled in this data structure in nature.+<cli> 
 +lab46:~/src/SEMESTER/DESIG/PROJECT$ make submit 
 +</cli>
  
-====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 of forming lines important? What problems does that solve? How are resources more efficiently utilized by this act?), and we accomplish that by its compositional definition:+if all went according to plan. If  notcheck 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()**, which will take the node we wish to place on the given queue, and enqueue will handle all the necessary coordination with its underlying list. +I'll be evaluating the project based on the following criteria:
-  * 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: +<code> 
-  * **FIFO****F**irst **I**n **F**irst **O**ut +91:dlq0:final tally of results (91/91
-  * **LILO****L**ast **I**n **L**ast **O**ut +*:dlq0:obtained project by the Sunday prior to duedate [6/6] 
- +*: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:implementation passes unit tests [13/13] 
- +*:dlq0:adequate modifications to code from template [26/26] 
-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). +*:dlq0:program operations conform to project specifications [26/26] 
- +*: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 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 requirements of a queue: +
- +
-  * **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()** functionwhich 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, 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. +
- +
-====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'**qty** element. +
- +
-Additionally, the queue will have a configured maximum buffer- if the quantity of nodes in the list exceeds the configured buffer of the queue, we should prevent any additional enqueues. +
- +
-It should also be pointed out that in other applications, a queue need not have a maximum buffer size.. in which case it can theoretically grow an indefinite amount. We will explore both conditions (unbounded and bounded) in this project. +
- +
-====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 +
-// +
-#define  DLQ_SUCCESS         0x0000000100000000 +
-#define  DLQ_CREATE_FAIL     0x0000000200000000 +
-#define  DLQ_NULL            0x0000000400000000 +
-#define  DLQ_EMPTY           0x0000000800000000         +
-#define  DLQ_OVERRUN         0x0000001000000000         +
-#define  DLQ_UNDERRUN        0x0000002000000000         +
-#define  DLQ_ERROR           0x0000004000000000 +
-#define  DLQ_INVALID         0x0000008000000000 +
-#define  DLQ_DEFAULT_FAIL    0x0000000000808000+
 </code> </code>
  
-====In inc/queue.h====+===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, a value multiplied against your actual project submission to influence the end result: 
 +      * no contributions, co-efficient is 0.50 
 +      * 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 "list.h" +
- +
-////////////////////////////////////////////////////////////////////// +
-// +
-// Define the queue struct +
-// +
-struct queue { +
-    Node *front;                       // pointer to front of queue +
-    Node *back;                        // pointer to back of queue +
-    List *data;                        // pointer to queue data +
-    ulli  buffer;                      // queue length (0- unbounded) +
-}; +
- +
-code_t    mkqueue(Queue **, ulli    ); // create new queue (of length) +
-code_t    cpqueue(Queue  *, Queue **); // create a copy of a queue +
-code_t    rmqueue(Queue **          ); // de-allocate a queue +
- +
-code_t    purge  (Queue **          ); // clear an existing queue +
- +
-code_t    enqueue(Queue **, Node  * ); // add node to back of queue +
-code_t    dequeue(Queue **, Node ** ); // grab node at front of queue +
- +
-#endif +
-</code> +
- +
-For our queue implementation, we will continue to utilize the double pointer, in order to practice passing parameters by address. +
- +
-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, both **buffer** and **qty** would be **private** member variables of their respective classes, unable to be used by anything other than their respective member functions. +
- +
-====queue library==== +
-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, and make sure you understand it. +
- +
-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. +
- +
-====Queue library unit tests==== +
-In **unit/queue/**, you will find these files: +
- +
-  * **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**   - unit test for **purge()** library function +
- +
-There are also corresponding **verify-FUNCTION.sh** scripts that will output a "MATCH"/"MISMATCH" to confirm overall conformance with the pertinent queue functionality. +
- +
-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, a fully working implementation of the queue library should resemble the following (when running the respective verify script): +
- +
- +
- +
-====queue library==== +
-Here is what you should get for queue: +
- +
-<cli> +
-lab46:~/src/data/dlq0$ make check +
-====================================================== +
-=    Verifying Doubly-Linked Queue Functionality     = +
-====================================================== +
-   [mkqueue] Total:   6, Matches:   6, Mismatches:   0 +
-   [enqueue] Total:  18, Matches:  18, Mismatches:   0 +
-   [dequeue] Total:  19, Matches:  19, Mismatches:   0 +
-   [cpqueue] Total:  17, Matches:  17, Mismatches:   0 +
-     [purge] Total:   7, Matches:   7, Mismatches:   0 +
-   [rmqueue] Total:  10, Matches:  10, Mismatches:   0 +
-====================================================== +
-   [RESULTS] Total:  77, Matches:  77, Mismatches:   0 +
-====================================================== +
-lab46:~/src/data/dlq0$  +
-</cli>+
  
-=====Submission===== +  * Solutions not abiding  by spirit of project will be  subject to a 50% overall deduction 
-{{page>haas:fall2016:common:submitblurb#DATA&noheader&nofooter}}+  * Solutions  not  utilizing descriptive  why and  how comments  will be subject to a 25% overall deduction 
 +  * 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
  
haas/fall2022/data/projects/dlq0.1509992013.txt.gz · Last modified: 2017/11/06 18:13 by 127.0.0.1