User Tools

Site Tools


notes:data:fall2022:projects:sll4

This is an old revision of the document!


BACKGROUND

Once you upgrade to SLL4, you will now have a new file within the inc/ directory called group.h. 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 has eight new list-group-processing functions, that are in charge of manipulating lists within our data structure. Going up one level of abstraction, lists are the new nodes! At this level, we are not worrying about manipulating nodes anymore, but only the node containers; in other words, we are only focusing on the addresses/pointers that hold lists, no more node processing this time.

SPECIFICATIONS

You have to get these group.h functions working:

  • mkgroup
  • rmgroup
  • linsert
  • lappend
  • lobtain
  • ldisplay
  • lgetpos
  • lsetpos

*Our task is to ask questions on Discord or in class and document our findings on this wiki page collaboratively, regarding the functionality of this project.

*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

Functions should be similar if not identical to the previous functions located in /src/list/. As for a recommended way to complete these.

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.

UNIT TESTS

Unit tests will rely upon one another as input/output/modifications to the list. A good majority of the functions call on display, so if you haven't completed display while checking it might lead to some issues. Make sure if you are getting issues that it isn't the unit test calling upon a not yet implemented function. Your display function will print NOT YET IMPLEMENTED if it isn't finished yet.

notes/data/fall2022/projects/sll4.1665788662.txt.gz · Last modified: 2022/10/14 23:04 by hcordell