This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
haas:fall2022:data:projects:sll0 [2021/09/08 17:20] – external edit 127.0.0.1 | haas:fall2022:data:projects:sll0 [2022/09/15 11:26] (current) – [UPGRADING] wedge | ||
---|---|---|---|
Line 4: | Line 4: | ||
</ | </ | ||
- | ======Project: Singly-Linked List of Nodes (SLL0)====== | + | ======PROJECT: Singly-Linked List of Nodes (SLL0)====== |
- | =====Errata===== | + | =====OBJECTIVE===== |
- | This section will document any updates applied | + | To enhance our ability |
- | * __revision #__: < | + | =====UPGRADING===== |
+ | To assist with consistency across all implementations, | ||
- | =====Objective===== | + | Simply go into the project base directory, and run: |
- | We've made it to lists! Time to start applying nodes to more elaborate manipulations, | + | |
- | + | ||
- | =====Reference===== | + | |
- | If you haven' | + | |
- | + | ||
- | =====Background===== | + | |
- | This connected node concept will be with us for the rest of the semester. | + | |
- | + | ||
- | The trick will be how we are connecting and manipulating these nodes which defines the theme of a particular activity. | + | |
- | + | ||
- | As you encountered in the introductory projects, we've been connecting nodes into sequential list organizations (what we refer to, conceptually, | + | |
- | + | ||
- | There are, however, many distinctions of linked lists... so we tend to add on a lot of qualifiers to better identify | + | |
- | + | ||
- | As our nodes up to this point have only contained a single Node pointer for connection (the " | + | |
- | + | ||
- | Therefore, generically, | + | |
- | + | ||
- | Confusing naming terminology? | + | |
- | + | ||
- | ====organizational unit==== | + | |
- | We've already experienced lists.. in concept they are nothing more than ensuring nodes are connected together | + | |
- | + | ||
- | In practice, though, we will make our lives easier by introducing an organizational unit to aid us in managing our linked lists. It is important to note, that what we are going to do, while common practice, does not in and of itself make a linked list... all we are doing is making our access of the linked list **easier**... that's it (and you're welcome). | + | |
- | + | ||
- | Just as the node struct is an organizational unit for the data and style of connecting (nodes would be useless if we had no need to put something of value in them... nor would they be of use if we couldn' | + | |
- | + | ||
- | So, we're just going to add another layer on top-- we're going to create a List struct, which will house some of the important managerial/ | + | |
- | + | ||
- | I give you, our list struct: | + | |
- | + | ||
- | <code c> | + | |
- | struct list { | + | |
- | struct node *lead; | + | |
- | struct node *last; | + | |
- | }; | + | |
- | </ | + | |
- | + | ||
- | All this does, as I said, is establish a container to better manage what has (up to this point) been individually managed variables. Hopefully you've been seeing how valuable the node container has been for managing node-related details-- this list container will do the same for the details we need to manage as a result of manipulating nodes. | + | |
- | + | ||
- | To make our lives easier, lets toss in a **typedef** as well: | + | |
- | + | ||
- | <code c> | + | |
- | typedef struct list List; | + | |
- | </ | + | |
- | + | ||
- | Now, we apply similar operations to our List container as we would individual Nodes... when we **insert()**, | + | |
- | + | ||
- | To address these aspects, we just access the struct elements as we have all along (as always, be mindful of a particular struct' | + | |
- | + | ||
- | <code c> | + | |
- | List *myList = mklist(); | + | |
- | Node *tmp = mknode(7); | + | |
- | + | ||
- | myList = insert(myList, | + | |
- | </ | + | |
- | + | ||
- | And we can access the value contained in the list's initial node as follows: myList -> lead -> info | + | |
- | + | ||
- | We do need to be mindful of the organization we are creating- as part of implementing this, we'll have various list management functions at our disposal (insert, append, sort, getpos, obtain, etc.)... so we should restrict our list manipulation to those functions (reduce the number of cooks in the kitchen). This is another aspect of relinquishing our default tight fist of control... it may take some getting used to, but as you start seeing the bigger picture, you'll see what a big favor we're doing for ourselves here. | + | |
- | + | ||
- | =====Procedure for bootstrapping===== | + | |
- | + | ||
- | ====Obtain==== | + | |
- | On Lab46, change into your **sln1** directory (I'll use **~/ | + | |
<cli> | <cli> | ||
- | lab46:~$ cd src | + | lab46: |
- | lab46: | + | |
- | lab46: | + | |
- | lab46: | + | |
</ | </ | ||
- | **NOTE:** At this point you should be completed with the **sln1** project. | + | =====OVERVIEW===== |
+ | Your task is to implement | ||
- | If you are done, and a **make help** shows an **upgrade-sll0** option being available: | + | Contributing to project documentation is also a core part of this project. |
- | < | + | You want the project documentation to provide you (as if coming in with no awareness of the project) with sufficient information so as to allow you to proceed. Asking questions on the discord is a great way of getting more information that you can use to add content. |
- | lab46: | + | =====EDIT===== |
- | ****************[ Data Structures Node Implementation ]***************** | + | You will want to go [[/notes/data/fall2022/projects/sll0|here]] to edit and fill in the various sections of the document: |
- | ** make - build everything | + | |
- | ** make debug - build everything | + | |
- | ** make check - check implementation for validity | + | |
- | ** ** | + | |
- | ** make libs - build all supporting libraries | + | |
- | ** make libs-debug | + | |
- | ** make apps - build unit tests ** | + | |
- | ** make apps-debug | + | |
- | ** make units - build unit tests ** | + | |
- | ** make units-debug | + | |
- | ** ** | + | |
- | ** make save - create | + | |
- | ** make submit | + | |
- | ** ** | + | |
- | ** make update | + | |
- | ** make reupdate | + | |
- | ** make reupdate-all | + | |
- | ** ** | + | |
- | ** make upgrade-sll0 | + | |
- | ** make clean - clean; remove all objects/compiled code ** | + | |
- | ** make help - this information | + | |
- | ************************************************************************ | + | |
- | lab46:~/src/SEMESTER/DESIG/sln1$ | + | |
- | </ | + | |
- | We can proceed with bootstrapping the **sll0** project: | + | |
- | <cli> | + | {{page>notes: |
- | lab46:~/ | + | |
- | Cleaning out object code ... OK | + | |
+ | =====SUBMISSION===== | ||
+ | To be successful in this project, the following criteria (or their equivalent) must be met: | ||
- | Project | + | * Project |
+ | * 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 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 | ||
- | Taking snapshot of current project (sln1) | + | ====Submit Tool Usage==== |
- | Compressing snapshot of sln1 project archive | + | Let' |
- | Setting secure permissions | + | submit, you would do the following |
- | + | uom0.c): | |
- | Project backup process complete | + | |
- | + | ||
- | Commencing upgrade process from sln1 to sll0 | + | |
- | + | ||
- | Creating | + | |
- | Copying your code to sll0 project directory | + | |
- | Copying new sll0 files into project directory | + | |
- | Synchronizing sll0 project revision level ... OK | + | |
- | Establishing sane file permissions for sll0 ... OK | + | |
- | + | ||
- | Upgrade Complete! You may now switch to the ../sll0 directory | + | |
- | + | ||
- | lab46: | + | |
- | </ | + | |
- | + | ||
- | As you can see from the last line: **You may now switch to the ~/ | + | |
- | + | ||
- | So let's do it: | + | |
<cli> | <cli> | ||
- | lab46: | + | lab46: |
- | lab46: | + | |
</ | </ | ||
- | ====Overview==== | + | You should get some sort of confirmation indicating successful submission |
- | You'll see various files and directories located here (one regular file, **Makefile**, and 6 directories). The directory structure (note, not all these directories may yet be present) for the project is as follows: | + | if all went according to plan. If not, check for typos and or locational |
+ | mismatches. | ||
- | * **app**: subdirectory tree containing applications/ | + | =====RUBRIC===== |
- | * **node**: location of node end-user applications | + | I'll be evaluating the project |
- | * **bin**: compiled, executable programs will reside here | + | |
- | * **inc**: | + | |
- | * **lib**: compiled, archived object files (aka libraries) will reside here | + | |
- | * **src**: subdirectory tree containing our Data Structure implementations | + | |
- | * **node**: location of our node implementation | + | |
- | * **list**: location of our linked list implementation (manipulation of nodes) | + | |
- | * **stack**: location of our stack implementation (manipulation of lists) | + | |
- | * **queue**: location of our queue implementation (a different manipulation of lists) | + | |
- | * ... | + | |
- | * **unit**: subdirectory tree containing unit tests, helping to verify correct implementation | + | |
- | * **node**: node-related unit tests will be here | + | |
- | * **list**: list-related unit tests will be here | + | |
- | * ... | + | |
- | =====Operating===== | + | <code> |
- | + | 78:sll0:final tally of results | |
- | The project is driven by a fleet of optimized **Makefile**s, | + | *:sll0:obtained project by the Sunday prior to duedate [13/13] |
- | + | *:sll0:clean compile, no compiler messages [13/13] | |
- | Each Makefile plays a unique role (the closer the Makefile is to the source | + | *:sll0:implementation passes unit tests [13/13] |
- | + | *:sll0: | |
- | The base-level Makefile is used to enact whole-project actions, such as initiating a compile, cleaning the project directory tree of compiled and object code, submitting projects, or applying bug-fixes or upgrading to other projects. | + | *:sll0:program operations conform |
- | + | *: | |
- | Running **make help** will give you a list of available options: | + | |
- | + | ||
- | <cli> | + | |
- | lab46:~/ | + | |
- | ****************[ Data Structures List Implementation ]***************** | + | |
- | ** make - build everything | + | |
- | ** make debug - build everything with debug symbols | + | |
- | ** make check - check implementation for validity | + | |
- | ** ** | + | |
- | ** make libs - build all supporting libraries | + | |
- | ** make libs-debug | + | |
- | ** make apps - build unit tests ** | + | |
- | ** make apps-debug | + | |
- | ** make units - build unit tests ** | + | |
- | ** make units-debug | + | |
- | ** ** | + | |
- | ** make use-test-reference | + | |
- | ** make use-your-own-code | + | |
- | ** ** | + | |
- | ** make save - create a backup archive | + | |
- | ** make submit | + | |
- | ** ** | + | |
- | ** make update | + | |
- | ** make reupdate | + | |
- | ** make reupdate-all | + | |
- | ** ** | + | |
- | ** make clean - clean; remove all objects/ | + | |
- | ** make help - this information | + | |
- | ************************************************************************ | + | |
- | lab46:~/ | + | |
- | </ | + | |
- | + | ||
- | In general, you will likely make the most frequent use of these options: | + | |
- | + | ||
- | - **make**: just go and try to build everything | + | |
- | - **make debug**: build with debugging support | + | |
- | - **make clean**: clean out everything so we can do a full compile | + | |
- | + | ||
- | Most of what you do will be some combination of those 3 options. | + | |
- | + | ||
- | ====Project Submission=== | + | |
- | When you are done with the project and are ready to submit it, you simply run **make submit**: | + | |
- | + | ||
- | < | + | |
- | lab46: | + | |
- | ... | + | |
- | </ | + | |
- | + | ||
- | ====Bugfixes and Updates==== | + | |
- | Sometimes, a typo or other issue will be uncovered in the provided code you have. I will endeavor to release updates which will enable you to bring your code up-to-date with my copy. | + | |
- | + | ||
- | When a new update is available, you will start seeing the following appear as you go about using make: | + | |
- | + | ||
- | < | + | |
- | lab46:~/src/ | + | |
- | ********************************************************* | + | |
- | *** NEW UPDATE AVAILABLE: Type 'make update' | + | |
- | ********************************************************* | + | |
- | ... | + | |
- | lab46:~/ | + | |
- | </ | + | |
- | + | ||
- | When this occurs, you may want to perform a backup (and/or commit/push any changes to your repository)-- certain files may be replaced, and you do not want to lose any modifications you have made: | + | |
- | + | ||
- | < | + | |
- | lab46: | + | |
- | Archiving the project | + | |
- | Compressing the archive ... | + | |
- | Setting Permissions ... | + | |
- | lab46:~/src/ | + | |
- | </ | + | |
- | + | ||
- | Once you have done that, go ahead and apply the update (note this output is from the **node0** project update, so you will not see the exact same output): | + | |
- | + | ||
- | < | + | |
- | lab46: | + | |
- | Update 1 COMMENCING | + | |
- | Update 1 CHANGE SUMMARY: Fixed base and other Makefile typos | + | |
- | Please reference errata section on project page for more information | + | |
- | Update 1 COMPLETE | + | |
- | Updated from revision 0 to revision 1 | + | |
- | lab46: | + | |
- | </ | + | |
- | + | ||
- | At this point your code is up to date (obviously the above output will reflect whatever the current revision is). | + | |
- | + | ||
- | ====error reporting==== | + | |
- | To facilitate debugging and correction of errors and warnings | + | |
- | + | ||
- | You can view this file to ascertain what errors existed in the last build of the project. | + | |
- | + | ||
- | With each new project build, this file is overwritten, | + | |
- | + | ||
- | =====Project Overview===== | + | |
- | + | ||
- | ====header file==== | + | |
- | In **inc/**, you will find a new file: **list.h** | + | |
- | + | ||
- | Take a look inside, and ask any questions to get clarification: | + | |
- | + | ||
- | <code c 1> | + | |
- | #ifndef _LIST_H | + | |
- | #define _LIST_H | + | |
- | + | ||
- | #include " | + | |
- | + | ||
- | struct list { | + | |
- | Node *lead; | + | |
- | Node *last; | + | |
- | }; | + | |
- | typedef struct list List; // because we deserve nice things | + | |
- | + | ||
- | List *mklist(void | + | |
- | List *insert (List *, Node *, Node *); // add node before given node | + | |
- | void displayf(List *, int); // display list from beginning to final node | + | |
- | int | + | |
- | Node *setpos(List *, int | + | |
- | + | ||
- | #endif | + | |
</ | </ | ||
- | This is your API for the list library. In order to use the list library three things need to happen: | + | ===Pertaining |
- | * you must **#include " | + | * each class member is to participate in the contribution of relevant information and formatting of the documentation |
- | * you must link against **lib/ | + | |
- | * you must call the functions providing the appropriate arguments | + | |
+ | * 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 | ||
+ | * 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 | ||
- | ====list library==== | + | ===Additionally=== |
- | In **src/ | + | |
- | * **displayf.c** - which will display the contents of your list from start to end | + | * Solutions not abiding |
- | * **insert.c** | + | * Solutions |
- | * **mk.c** | + | * Solutions not utilizing indentation |
- | * **pos.c** | + | * Solutions not organized and easy to |
- | + | ||
- | Skeletons of functions has been provided. Fill in the gaps, and implement the functions that have been left blank. | + | |
- | + | ||
- | Take a look at the code there. These are the files that contain functions which will be compiled and archived into the list library (**liblist.a**) we will be using in this and future projects. | + | |
- | + | ||
- | Figure out what is going on, make sure you understand it. | + | |
- | + | ||
- | **NOTE:** None of these files denote an entire runnable program. These are merely standalone functions. The various programs under the **app/** and **unit/** directories will use these functions in addition | + | |
- | + | ||
- | You will also notice there are function prototypes for these list library functions in the **list.h** header file, located in the **inc/** subdirectory, | + | |
- | + | ||
- | ====List library unit tests==== | + | |
- | In **unit/ | + | |
- | + | ||
- | * **unit-mklist.c** - unit test for **mklist()** library function | + | |
- | * **unit-displayf.c** - unit test for **displayf()** library function | + | |
- | * **unit-insert.c** - unit test for **insert()** library function | + | |
- | * **unit-getpos.c** - unit test for **getpos()** library function | + | |
- | * **unit-setpos.c** - unit test for **setpos()** library function | + | |
- | + | ||
- | These are complete runnable programs (when compiled, | + | |
- | + | ||
- | 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! | + | |
- | + | ||
- | =====Building the code===== | + | |
- | You've made changes | + | |
- | + | ||
- | First, let's have a second terminal open and logged into lab46. Put it in the base directory of the **sll0** project: | + | |
- | + | ||
- | < | + | |
- | lab46:~$ cd src/ | + | |
- | lab46: | + | |
- | </ | + | |
- | + | ||
- | Keep your other terminal in the **~/ | + | |
- | + | ||
- | ====cleaning things out==== | + | |
- | If you've already ran **make** to build everything a few times, you may want to clean things out and do a fresh compile (never hurts, and might actually fix some problems): | + | |
- | + | ||
- | < | + | |
- | lab46: | + | |
- | ... | + | |
- | lab46: | + | |
- | </ | + | |
- | + | ||
- | ====compile project==== | + | |
- | Next, compile the whole project | + | |
- | + | ||
- | < | + | |
- | lab46: | + | |
- | ... | + | |
- | </ | + | |
- | ====Our binaries==== | + | |
- | Compiled executables go in the **bin** directory, so if we change into there and take a look around we see the various executables built (both new with this project as well as migrated code from previous projects). | + | |
- | + | ||
- | < | + | |
- | lab46: | + | |
- | lab46: | + | |
- | ... | + | |
- | lab46: | + | |
- | </ | + | |
- | + | ||
- | ====Run the program==== | + | |
- | To run **unit-insert**, | + | |
- | + | ||
- | < | + | |
- | lab46: | + | |
- | </ | + | |
- | + | ||
- | The program | + | |
- | + | ||
- | =====Reference Implementation===== | + | |
- | As the layers and complexities rise, narrowing down the source of errors becomes increasingly important. | + | |
- | + | ||
- | If **unit-insert** isn't working, is it because of a problem there, in your **insert()** function, or in one of the node functions it calls, such as **mknode()**? | + | |
- | + | ||
- | To aid you in your development efforts, you now have the ability to import a working implementation of previous project functions into your current project for the purposes of testing/ | + | |
- | + | ||
- | ====Using the test reference implementation==== | + | |
- | You'll notice that, upon running **make help** in the base-level Makefile, the following new options appear (about halfway in the middle): | + | |
- | + | ||
- | < | + | |
- | ** ** | + | |
- | ** make use-test-reference | + | |
- | ** make use-your-own-code | + | |
- | ** ** | + | |
- | </ | + | |
- | + | ||
- | In order to make use of it, you'll need to run **make use-test-reference** from the base of your **sll0** project directory, as follows: | + | |
- | + | ||
- | < | + | |
- | lab46: | + | |
- | ... | + | |
- | NODE reference implementation in place, run ' | + | |
- | lab46: | + | |
- | </ | + | |
- | + | ||
- | You'll see that final message indicating everything is in place (it automatically runs a **make clean** for you), and then you can go ahead and build everything with it: | + | |
- | + | ||
- | < | + | |
- | lab46: | + | |
- | ... | + | |
- | </ | + | |
- | + | ||
- | **__Debugging__: | + | |
- | + | ||
- | ====Reverting back to using your code==== | + | |
- | If you were trying out the reference implementation to verify queue functionality, | + | |
- | + | ||
- | < | + | |
- | lab46: | + | |
- | Local node implementation restored, run 'make clean; make' to build everything. | + | |
- | lab46: | + | |
- | </ | + | |
- | + | ||
- | Just to be clear: the reference implementation is not some magic shortcut getting you out of doing this project; it merely gives you a glimpse into how things are working, or should be working, provided your node library is complete and fully functional. | + | |
- | + | ||
- | =====Expected Results===== | + | |
- | To assist you in verifying a correct implementation, | + | |
- | + | ||
- | + | ||
- | ====list library (so far)==== | + | |
- | Here is what you should get for all the functions completed so far in the list library: | + | |
- | + | ||
- | < | + | |
- | lab46: | + | |
- | ==================================================== | + | |
- | = Verifying Singly-Linked List Functionality | + | |
- | ==================================================== | + | |
- | [mklist] Total: | + | |
- | [insert] Total: | + | |
- | [displayf] Total: | + | |
- | [getpos] Total: | + | |
- | [setpos] Total: | + | |
- | ==================================================== | + | |
- | | + | |
- | ==================================================== | + | |
- | lab46: | + | |
- | </ | + | |
- | =====Submission===== | + | |
- | {{page> | + | |