This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
haas:fall2014:data:projects:sll2 [2014/10/05 21:27] – [List library unit tests] wedge | haas:fall2014:data:projects:sll2 [2014/11/03 12:38] (current) – [Errata] wedge | ||
---|---|---|---|
Line 11: | Line 11: | ||
This section will document any updates applied to the project since original release: | This section will document any updates applied to the project since original release: | ||
- | * __revision | + | * __revision |
+ | * __revision 2__: Typo in my original tweak preventing it from working. Now that I've tested it, we have a working solution, and dll0 can now be properly upgraded to... be sure to update before upgrading! (20141027) | ||
+ | * __revision 3__: Typo with for loop iterations (one too many) in unit-sortlist... now fixed. It makes a backup copy of the original, should any additional local changes have been made. (20141028) | ||
+ | * __revision 4__: Base Makefile aesthetic enhancements (20141103) | ||
=====Objective===== | =====Objective===== | ||
Line 21: | Line 24: | ||
<code c> | <code c> | ||
- | List *sortlist | + | List *sortlist(List *, int); // sort list (according to mode) |
- | void displayb(List *, int); // display list in reverse order | + | void displayb(List *, int); // display list in reverse order |
</ | </ | ||
Line 38: | Line 41: | ||
In **testing/ | In **testing/ | ||
- | * **unit-sortlist.c** - unit test for **sochlist()** library function | + | * **unit-sortlist.c** - unit test for **sortlist()** library function |
* **unit-displayb.c** - unit test for **displayb()** library function | * **unit-displayb.c** - unit test for **displayb()** library function | ||
Line 56: | Line 59: | ||
====list testing applications==== | ====list testing applications==== | ||
+ | |||
+ | ===palindrome=== | ||
Now that we've completed our list functionality, | Now that we've completed our list functionality, | ||
+ | |||
+ | Our first endeavor will be that of palindromes (ie words/ | ||
+ | |||
+ | This implementation will be considered an extra credit opportunity, | ||
+ | |||
+ | It is also highly recommended to undertake as it will give you further experience working with these concepts. | ||
=====Submission Criteria===== | =====Submission Criteria===== | ||
To be successful in this project, the following criteria must be met: | To be successful in this project, the following criteria must be met: | ||
+ | * Project must be submit on time, by the posted deadline. | ||
+ | * 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) | * Code must compile cleanly (no warnings or errors) | ||
* all requested functions must be implemented in the related library | * 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 | * 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 | * Processing must be correct based on input given and output requested | ||
* Output must be correct (i.e. the list visualization, | * 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 | ||
+ | * Any "to be implemented" | ||
+ | * Sufficient comments explaining the point of provided logic **MUST** be present | ||
* Track/ | * Track/ | ||
* Submit a copy of your source code to me using the **submit** tool (**make submit** will do this) by the deadline. | * Submit a copy of your source code to me using the **submit** tool (**make submit** will do this) by the deadline. |