This shows you the differences between two versions of the page.
haas:fall2022:data:projects:dln0 [2021/10/14 18:04] – created - external edit 127.0.0.1 | haas:fall2022:data:projects:dln0 [2022/10/15 12:07] (current) – wedge | ||
---|---|---|---|
Line 4: | Line 4: | ||
</ | </ | ||
- | ======Project: DLN0====== | + | ======PROJECT: Nodes - Doubly-Linked Nodes (DLN0)====== |
- | =====Errata===== | + | =====OBJECTIVE===== |
- | This section will document any updates applied to the project | + | To begin our journey on doubly-linked data structures, and collaboratively authoring and documenting |
- | * __revision #__: < | + | =====OVERVIEW===== |
+ | We have been focusing on singly-linked data structures for the past few weeks. We now start delving into the realm of doubly-linked data structures. And we will start by reimplementing some of the same base data structures | ||
- | =====Objective===== | + | =====GRABBING===== |
- | In this project, we take our first opportunity | + | We are doing a fresh start this week, reimplementing |
- | =====Procedure to obtain dln0===== | + | Simply go into your DESIG organizational/ |
- | As this is a rewrite, dln0 is not based on any of the code you have written up to this point. As such, the transition process is slightly different. | + | |
- | + | ||
- | ====grabit==== | + | |
- | Just as we did with the first project in the series, **sln1**, we can also use grabit to obtain this project: | + | |
<cli> | <cli> | ||
- | lab46: | + | lab46: |
- | ERROR: must specify class and project! | + | |
- | example: | + | |
- | grabit discrete matrixadd | + | |
- | + | ||
- | Projects available for data: | + | |
- | * dln0 | + | |
- | * sln1 | + | |
- | + | ||
- | lab46: | + | |
</ | </ | ||
- | So, we can just go ahead and do: | + | =====EDIT===== |
+ | You will want to go [[/ | ||
- | < | + | * [[/notes/data/ |
- | lab46:~/src/data$ grabit data dln0 | + | |
- | ... | + | |
- | </cli> | + | |
- | And voila! Freshly grabbed **dln0** in our ~/src/data/ directory. | + | {{page> |
- | =====Project Overview===== | + | =====SUBMISSION===== |
- | For this project, | + | To be successful in this project, the following criteria (or their equivalent) must be met: |
- | ====In inc/node.h==== | + | * Project must be submit on time, by the deadline. |
- | <code c 1> | + | * Late submissions will lose 33% credit per day, with the submission window closing on the 3rd day following the deadline. |
- | #ifndef _NODE_H | + | * All code must compile cleanly (no warnings or errors) |
- | #define _NODE_H | + | * 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 a consistent style throughout | ||
+ | * 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 | ||
- | ////////////////////////////////////////////////////////////////////// | + | ====Submit Tool Usage==== |
- | // | + | Let' |
- | // Additional useful information in data.h | + | submit, you would do the following: |
- | // | + | |
- | #include " | + | |
- | ////////////////////////////////////////////////////////////////////// | + | <cli> |
- | // | + | lab46:~/src/SEMESTER/DESIG/PROJECT$ make submit |
- | // node struct definition | + | </cli> |
- | // | + | |
- | struct node { | + | |
- | union info payload; | + | |
- | struct node | + | |
- | struct node | + | |
- | }; | + | |
- | ////////////////////////////////////////////////////////////////////// | + | You should get some sort of confirmation indicating successful submission |
- | // | + | if all went according to plan. If not, check for typos and or locational |
- | // function prototypes | + | mismatches. |
- | // | + | |
- | code_t mknode(Node **, sc); // allocate new node containing value | + | |
- | code_t cpnode(Node | + | |
- | code_t rmnode(Node **); // deallocate node | + | |
- | #endif | + | =====RUBRIC===== |
- | </ | + | I' |
- | + | ||
- | There is an addition of a " | + | |
- | + | ||
- | The node info element has been changed as well... instead of a singular value, it is now a union by the name of payload, which contains a value entry (a signed char entry), a data entry (Node pointer), and an other entry (a void pointer). | + | |
- | + | ||
- | ====In inc/data.h==== | + | |
- | You' | + | |
- | + | ||
- | <code c 1> | + | |
- | #ifndef _DATA_H | + | |
- | #define _DATA_H | + | |
- | + | ||
- | ////////////////////////////////////////////////////////////////////// | + | |
- | // | + | |
- | // We make use of NULL, so we need stdlib | + | |
- | // | + | |
- | #include < | + | |
- | + | ||
- | ////////////////////////////////////////////////////////////////////// | + | |
- | // | + | |
- | // Set up union for node payload (multipurpose use) | + | |
- | // | + | |
- | union info { | + | |
- | sc | + | |
- | struct node *data; | + | |
- | void *other; | + | |
- | }; | + | |
- | + | ||
- | ////////////////////////////////////////////////////////////////////// | + | |
- | // | + | |
- | // node struct helper defines | + | |
- | // | + | |
- | # | + | |
- | # | + | |
- | # | + | |
- | + | ||
- | ////////////////////////////////////////////////////////////////////// | + | |
- | // | + | |
- | // create some peers to NULL for our endeavors: UNDEFINED | + | |
- | // | + | |
- | #if !defined(UNDEFINED) | + | |
- | #define UNDEFINED ((void*)1) | + | |
- | #endif | + | |
- | + | ||
- | ////////////////////////////////////////////////////////////////////// | + | |
- | // | + | |
- | // custom types (mostly for shortening typing) | + | |
- | // | + | |
- | typedef struct node Node; // because we deserve nice things | + | |
- | typedef unsigned long long int code_t; // status code data type | + | |
- | typedef unsigned long long int ulli; | + | |
- | typedef | + | |
- | + | ||
- | ////////////////////////////////////////////////////////////////////// | + | |
- | // | + | |
- | // Status codes for the doubly linked node implementation | + | |
- | // | + | |
- | # | + | |
- | # | + | |
- | # | + | |
- | # | + | |
- | # | + | |
- | # | + | |
- | # | + | |
- | # | + | |
- | #endif | + | < |
+ | 65: | ||
+ | *: | ||
+ | *: | ||
+ | *: | ||
+ | *: | ||
+ | *: | ||
+ | *:dln0:code tracked in lab46 semester repo [7/7] | ||
</ | </ | ||
- | ====node operation status codes==== | + | ===Pertaining to the collaborative authoring of project documentation=== |
- | You'll notice the presence of a set of # | + | |
- | They are not exclusive- | + | * each class member is to participate |
+ | * minimal member contributions consist of: | ||
+ | * 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 | ||
+ | * met minimum contribution threshold is 1.00 | ||
- | * **DLN_SUCCESS** - everything went according to plan, no errors encountered, | + | ===Additionally=== |
- | * **DLN_MALLOC_FAIL** - memory allocation failed (considered in error) | + | |
- | * **DLN_ALREADY_ALLOC** - memory has already been allocated (considered in error) | + | |
- | * **DLN_NULL** - result is NULL (probably in error) | + | |
- | * **DLN_DEFAULT_FAIL** - default state of unimplemented functions (default error) | + | |
- | * **DLN_ERROR** - some error occurred | + | |
- | * **DLN_INVALID** - invalid use (NULL pointer) | + | |
- | * **DLN_RESERVED_CODE** - reserved for future use (not used at present time) | + | |
- | For example, in the case of " | + | * Solutions not abiding |
- | * DLN_ERROR (a problem has occurred) | + | * Solutions |
- | * DLN_MALLOC_FAIL (a problem has occurred when using malloc()) | + | |
- | * DLN_NULL (no memory allocated, so node cannot be anything but NULL) | + | * Solutions not organized |
- | + | ||
- | ALL THREE states must be returned from the function in question should such an occurrence take place. | + | |
- | + | ||
- | You'll notice these #defines map to numeric values, | + | |
- | + | ||
- | ====In inc/ | + | |
- | Finally we have support.h... this header | + | |
- | + | ||
- | ====node library==== | + | |
- | In **src/ | + | |
- | + | ||
- | Figure out what is going on, the connections, | + | |
- | + | ||
- | Be sure to focus on implementing the functionality from scratch | + | |
- | + | ||
- | + | ||
- | =====Expected Results===== | + | |
- | To assist you in verifying | + | |
- | + | ||
- | ====node library==== | + | |
- | Here is what you should get for node: | + | |
- | + | ||
- | < | + | |
- | lab46: | + | |
- | ====================================================== | + | |
- | = Verifying Doubly-Linked | + | |
- | ====================================================== | + | |
- | [mknode] Total: | + | |
- | [cpnode] Total: | + | |
- | [rmnode] Total: | + | |
- | ====================================================== | + | |
- | | + | |
- | ====================================================== | + | |
- | lab46: | + | |
- | </ | + | |
- | =====Submission===== | + | |
- | {{page> | + | |