User Tools

Site Tools


notes:data:fall2022:projects:sll3

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
notes:data:fall2022:projects:sll3 [2022/10/18 19:39] – [PROGRAM] gsubernotes:data:fall2022:projects:sll3 [2022/10/19 21:42] (current) – [PROGRAM] dmuck
Line 49: Line 49:
 *For anybody interested in editing the wiki page, here is the dokuwiki user guide: https://www.dokuwiki.org/wiki:syntax#basic_text_formatting -Ash *For anybody interested in editing the wiki page, here is the dokuwiki user guide: https://www.dokuwiki.org/wiki:syntax#basic_text_formatting -Ash
 =====PROGRAM===== =====PROGRAM=====
-Inside list.h, the included header file given to you when you upgraded, and that you've had for the past few iterations of this projectwas updated with additional variables. Two new variables were added to the list struct. Those are qty and next. Next is a pointer to the next list, we are now dealing with groups of linked lists. Qty contains the amount of nodes in the list. Other than that, nothing has changed inside the list.h file given to you. This project should take minimal time, don't be surprised if it seems too easy, that's why sll3 and sll4 are due both the week after break week. More detailed information about the types of qty and the next pointer are specified above in the specifications section. Remember- with the new quantity +Inside list.h, the included header file given to you when you upgraded, and that you've had for the past few iterations of this project was updated with additional variables. Two new variables were added to the list struct. 
 + 
 +Those are qty and next.  
 + 
 +  * [next] is a pointer to the next list, we are now dealing with groups of linked lists. (myList -> next) 
 + 
 +  * [qty] contains the amount of nodes in the list. (myList -> qty)  
 + 
 +Other than that, nothing has changed inside the list.h file given to you. This project should take minimal time, don't be surprised if it seems too easy, that's why sll3 and sll4 are due both the week after break week. More detailed information about the types of qty and the next pointer are specified above in the specifications section.  
 + 
 +Remember- with the new quantity property, you only want to change it's value if you are adding/removing nodes to the list (Only in insert, append, and obtain). Also, be sure you check that you are not incrementing the quantity if inserting NULL to the list, or else your quantity will be incorrect (qty 1 number off on insert unit test). This should be checked for each function that inserts/removes nodes from the list.
 =====OUTPUT SPECIFICATIONS===== =====OUTPUT SPECIFICATIONS=====
 Nothing has changed in terms of output from your original five functions. Only add functionality of the new variables to the previously made functions.  Nothing has changed in terms of output from your original five functions. Only add functionality of the new variables to the previously made functions. 
notes/data/fall2022/projects/sll3.1666121984.txt.gz · Last modified: 2022/10/18 19:39 by gsuber