This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
notes:data:fall2022:projects:sll4 [2022/10/18 11:37] – copied fixes from sll3 bolsen1 | notes:data:fall2022:projects:sll4 [2022/10/19 23:18] (current) – [BACKGROUND] dmuck | ||
---|---|---|---|
Line 24: | Line 24: | ||
Once you upgrade to SLL4, you will now have a new file within the '' | Once you upgrade to SLL4, you will now have a new file within the '' | ||
Group is a new struct of data that will hold and link lists together. Just like you have a list of nodes, you will now have a group of lists, or a list of lists if you may. | Group is a new struct of data that will hold and link lists together. Just like you have a list of nodes, you will now have a group of lists, or a list of lists if you may. | ||
+ | |||
+ | |||
+ | In group struct: | ||
+ | |||
+ | List *initial; | ||
+ | List *closing; | ||
+ | |||
Group has eight new list-group-processing functions, that are in charge of manipulating lists within our data structure. Going up one level of abstraction, | Group has eight new list-group-processing functions, that are in charge of manipulating lists within our data structure. Going up one level of abstraction, | ||
+ | |||
+ | Take care to check the unit-test files for other functions that are being called in the event that you have not yet implemented them. | ||
=====SPECIFICATIONS===== | =====SPECIFICATIONS===== | ||
Line 31: | Line 40: | ||
* mkgroup | * mkgroup | ||
* rmgroup | * rmgroup | ||
- | * linsert | + | * Linsert |
- | * lappend | + | * Lappend |
- | * lobtain | + | * Lobtain |
- | * ldisplay | + | * Ldisplay |
- | * lgetpos | + | * Lgetpos |
- | * lsetpos | + | * Lsetpos |
Line 43: | Line 52: | ||
*For anybody interested in editing the wiki page, here is the dokuwiki user guide: https:// | *For anybody interested in editing the wiki page, here is the dokuwiki user guide: https:// | ||
=====PROGRAM===== | =====PROGRAM===== | ||
- | Functions should be similar if not identical to the previous functions located in /src/list/. As for a recommended way to complete these. When display is not finished, it will output "NOT YET IMPLEMENTED" | + | Functions should be similar if not identical to the previous functions located in /src/list/. As for a recommended way to complete these. It is highly recommended to reference (or even copy and modify if possible) your previous functions. This will drastically decrease your time spent on the project. When display is not finished, it will output "NOT YET IMPLEMENTED" |
+ | |||
+ | For // | ||
=====OUTPUT SPECIFICATIONS===== | =====OUTPUT SPECIFICATIONS===== | ||
Output should conform to the output of the unit tests, anything other than what is displayed inside the unit test is optional. If you are outputting anything other than the unit test, it would be a good idea to make sure it's fine instead of losing points trying to guess whether or not it is fine. | Output should conform to the output of the unit tests, anything other than what is displayed inside the unit test is optional. If you are outputting anything other than the unit test, it would be a good idea to make sure it's fine instead of losing points trying to guess whether or not it is fine. | ||
Line 49: | Line 60: | ||
// | // | ||
=====UNIT TESTS===== | =====UNIT TESTS===== | ||
- | Unit tests will rely upon one another as input/ | + | Unit tests will rely upon one another as input/ |
+ | |||
+ | An errors file will be created after running make, this may be helpful if things aren't compiling correctly. | ||
+ | =====DEBUGGING===== | ||
+ | Useful tools for debugging issues are gdb and examining the test files themselves. to utilize gdb, run the test program with the gdb command (not make check), with a command that might look like "gdb ./ |