This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
haas:fall2014:data:projects:sll2 [2014/03/23 13:41] – external edit 127.0.0.1 | haas:fall2014:data:projects:sll2 [2014/11/03 12:38] (current) – [Errata] wedge | ||
---|---|---|---|
Line 6: | Line 6: | ||
~~TOC~~ | ~~TOC~~ | ||
- | ======Project: | + | ======Project: |
- | =====Overview===== | + | =====Errata===== |
- | We will be extending our sll1 project in sll2 with the addition of singly-linked list-based stacks. | + | This section |
- | =====Update and Upgrade===== | + | * __revision 1__: In anticipation for the release of our next project |
- | For this project, you'll update your **sll1** project to gain access | + | |
+ | | ||
+ | * __revision 4__: Base Makefile aesthetic enhancements (20141103) | ||
- | ====Step 0. Change into project directory==== | + | =====Objective===== |
- | Change | + | In this project, we wrap up our singly-linked list implementation by exploring the reverse display and sorting of nodes in a list, along with writing a few application programs |
- | < | + | =====Project Overview===== |
- | lab46:~$ cd src/ | + | |
- | lab46: | + | |
- | </ | + | |
- | ====Step 1. Update | + | For this project, we're going to be implementing the following functions: |
- | <cli> | + | <code c> |
- | lab46:~/src/data/sll1$ make update | + | List *sortlist(List *, int); |
- | ... | + | void displayb(List *, int); // display list in reverse order |
- | </cli> | + | </code> |
- | ====Step 2. Upgrade to sll2 project (copies over your code)==== | + | ====list library==== |
- | < | + | In **src/list/**, you will find 2 new C files: |
- | lab46:~/src/data/sll1$ make upgrade-sll2 | + | |
- | ... | + | |
- | </ | + | |
- | ====Step 3. Change into sll2 directory==== | + | * **sort.c** - which will house the list sort function |
+ | * **displayb.c** - which will handle displaying the list backwards | ||
- | < | + | Take a look at the code there. These are the files that contain functions which will be compiled and archived into the node library (**liblist.a**) we will be using in this and future projects. |
- | lab46: | + | |
- | lab46: | + | |
- | </ | + | |
- | =====Layout===== | + | Figure out what is going on, make sure you understand |
- | This project codebase | + | |
- | * inc - stack.h header | + | ====List library unit tests==== |
- | * src/stack - source code for the stack operations | + | In **testing/ |
- | | + | |
- | =====Stacks===== | + | * **unit-sortlist.c** - unit test for **sortlist()** library function |
- | A stack is another data structure, which is very heavily and widely used throughout computing and our everyday lives. | + | * **unit-displayb.c** - unit test for **displayb()** library function |
- | It works on a principle of " | + | These are complete runnable programs |
- | This restriction of access creates new possibilities for algorithms, enabling useful functionality. | + | Of particular importance, I want you to take a close look at: |
- | The basic stack operations are: **push()** and **pop()** which will call the necessary underlying list operations (likely **append()** | + | |
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
- | The stack has a **size** variable, which unlike the list's **qty** (which keeps track of how many nodes are in the list at any given time), **size** mandates a maximum size a stack can be (if the **qty** has reached **size**, no new nodes should be added (i.e. **push()**ed)- this is what is known as a **stack overflow condition**)). For purposes of flexibility, | + | ====list testing applications==== |
- | There is often a **peek()** operation also provided with many stack implementations. It is by no means necessary (the underlying functionality can be entirely accomplished, | + | ===palindrome=== |
- | =====Errata===== | + | Now that we've completed our list functionality, we can use these individual functions to piece together solutions |
- | ====03/ | + | |
- | * **Update 1**: testing/ | + | |
- | * By request, I've changed the deadline of sll2 to sunday instead of friday. You're welcome. | + | |
- | ====03/22/ | + | Our first endeavor will be that of palindromes (ie words/phrases that, when reversed, spell the same thing). |
- | * **Update 2**: Minor tweaks to testing/ | + | |
- | * Provides upgrade path to the new **dll1** project (your next potential code rewrite) | + | |
- | ====03/ | + | This implementation will be considered an extra credit opportunity, |
- | * **Update 3**: Think I found the problem with **testing/ | + | |
- | * Implemented another stack test program: **testing/ | + | |
- | * Apparently update 2 never copied over the Makefile, this one does | + | |
- | =====Submission===== | + | |
- | To successfully complete this project, the following criteria must be met: | + | |
- | | + | It is also highly recommended to undertake as it will give you further experience working with these concepts. |
+ | =====Submission Criteria===== | ||
+ | To be successful in this project, the following criteria must be met: | ||
+ | |||
+ | | ||
+ | * The late submission window, if any, will be far shorter and once closed, will see no project evaluations done. | ||
+ | * Code must compile cleanly (no warnings or errors) | ||
+ | * all requested functions must be implemented in the related library | ||
+ | * all requested functionality must conform to stated requirements (either on this project page or in comment banner in source code files themselves). | ||
+ | * Executed programs must display in a 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 must be correct (i.e. the list visualization, | ||
* Code must be nicely and consistently indented (you may use the **indent** tool) | * Code must be nicely and consistently indented (you may use the **indent** tool) | ||
* Code must be commented | * Code must be commented | ||
- | | + | |
- | | + | * Sufficient comments explaining the point of provided logic **MUST** |
- | | + | |
- | * evaluations | + | |
* Track/ | * Track/ | ||
- | * Submit a copy of your source code to me using the **submit** tool (or **make submit**). | + | * Submit a copy of your source code to me using the **submit** tool (**make submit** |
- | + | ||
- | To submit | + | |
- | + | ||
- | < | + | |
- | lab46: | + | |
- | ... | + | |
- | Submitting data project " | + | |
- | -> sll2-20140317-18.tar.gz(OK) | + | |
- | + | ||
- | SUCCESSFULLY SUBMITTED | + | |
- | </ | + | |
- | + | ||
- | You should get some sort of confirmation indicating successful submission if all went according to plan. If not, check for typos and or locational mismatches. | + | |
- | + | ||
- | ====Saving your work==== | + | |
- | To submit | + | |
- | + | ||
- | < | + | |
- | lab46: | + | |
- | ... make save now issues a pre-emptive make clean ... | + | |
- | Archiving the project ... | + | |
- | Compressing the archive ... | + | |
- | Setting permissions ... | + | |
- | lab46: | + | |
- | lab46: | + | |
- | sll2-20140317-18.tar.gz | + | |
- | lab46: | + | |
- | </ | + |