This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
notes:data:fall2022:projects:sll0 [2022/09/22 03:12] – [PROGRAM] bbarrow1 | notes:data:fall2022:projects:sll0 [2022/09/22 03:39] (current) – [DEBUGGING ADVICE] rcorcor1 | ||
---|---|---|---|
Line 49: | Line 49: | ||
**mklist()** should make a new list containing a lead and last node. These nodes point to the start and end of the list. | **mklist()** should make a new list containing a lead and last node. These nodes point to the start and end of the list. | ||
- | Is very similar to mknode(). | + | Is very similar to mknode().**For Errors**: On error, return NULL. |
**getpos()** should get the position of the node passed into the function. It should look at the node passed in -> info and find that node inside the list. If that node isn't found inside the list it should return the appropriate error specified inside pos.c. | **getpos()** should get the position of the node passed into the function. It should look at the node passed in -> info and find that node inside the list. If that node isn't found inside the list it should return the appropriate error specified inside pos.c. | ||
+ | Start a temp node at the beginning of the list and go through each node until the given node is reached, using some form of a counter to obtain that positions value. | ||
**For Errors**: If Null/ | **For Errors**: If Null/ | ||
**setpos()** should set a new Node* to a position specified by a number passed into the function, think of setting a tmp variable and looping to get to that position as done in sln0. | **setpos()** should set a new Node* to a position specified by a number passed into the function, think of setting a tmp variable and looping to get to that position as done in sln0. | ||
Line 65: | Line 66: | ||
One tool that can be utilised for debugging is the gdb and make debug commands. Use the command make with the argument debug (typed as "make debug" | One tool that can be utilised for debugging is the gdb and make debug commands. Use the command make with the argument debug (typed as "make debug" | ||
- | An " | + | An " |
+ | After running " | ||
=====OUTPUT SPECIFICATIONS===== | =====OUTPUT SPECIFICATIONS===== | ||
The only program that will be displaying output is the display function, with it possessing a standard mode and an indexed mode. The standard will simply show the values one after another, such as "0 -> 3 -> 7 -> 9 -> 19 -> NULL". The indexed mode will show the list address (starting at 0) along with the index location, such that "[0] 0 -> [1] 3 -> [2] 7 ->[3] 9 -> NULL". Note that the NULL is not accompanied by a list address. | The only program that will be displaying output is the display function, with it possessing a standard mode and an indexed mode. The standard will simply show the values one after another, such as "0 -> 3 -> 7 -> 9 -> 19 -> NULL". The indexed mode will show the list address (starting at 0) along with the index location, such that "[0] 0 -> [1] 3 -> [2] 7 ->[3] 9 -> NULL". Note that the NULL is not accompanied by a list address. |