User Tools

Site Tools


haas:fall2014:data:projects:sll2

Differences

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

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
haas:fall2014:data:projects:sll2 [2014/10/20 18:45] – [Submission Criteria] wedgehaas: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 #__<description> (DATESTRING)+  * __revision 1__In anticipation for the release of our next project (**dll0**), I have made some tweaks to the base Makefile to allow for a smoother transition at project upgrade time. (20141026) 
 +  * __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 *, int);          // sort list (according to mode) +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
 </code> </code>
  
Line 38: Line 41:
 In **testing/list/unit/**, you will find these new files: In **testing/list/unit/**, you will find these new files:
  
-  * **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, we can use these individual functions to piece together solutions to various everyday problems where a list could be effective. After all, that's a big aspect to learning data structures- they open doors to new algorithms and problem solving capabilities. Now that we've completed our list functionality, we can use these individual functions to piece together solutions to various everyday problems where a list could be effective. After all, that's a big aspect to learning data structures- they open doors to new algorithms and problem solving capabilities.
 +
 +Our first endeavor will be that of palindromes (ie words/phrases that, when reversed, spell the same thing).
 +
 +This implementation will be considered an extra credit opportunity, so as to offer those who have fallen behind (but working to get caught up) a reprieve on some of the credit they've lost.
 +
 +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:
haas/fall2014/data/projects/sll2.1413830705.txt.gz · Last modified: 2014/10/20 18:45 by wedge