User Tools

Site Tools


notes:data:fall2022:projects:sll1

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:sll1 [2022/09/29 03:56] – [UNIT TESTS] pleblancnotes:data:fall2022:projects:sll1 [2022/09/29 19:01] (current) – [SPECIFICATIONS] bolsen1
Line 17: Line 17:
 Each file contains its corresponding functions. Each file contains its corresponding functions.
  
 +Another thing to note is that the sll1 project files can only compile with version 9 of gcc. If you are not on lab46 and the project fails to build the library or unit tests, this may be because you are using a newer or older version of gcc.
  
 +You can use the same version of gcc as lab46 by using the following commands (assuming you are using a Raspberry Pi with it's default OS) in this link: https://gist.github.com/sol-prog/95e4e7e3674ac819179acf33172de8a9
  
 *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. *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.
Line 28: Line 29:
 displayb(): displays the contents of a list backwards. displayb(): displays the contents of a list backwards.
  
-append(): Adds a node into a list after the specified place. For example, if our list is (4)->(6)->(8)->NULL, and we append 7 into (6), then our list will be (4)->(6)->(7)->(8)->NULL.+append(): Adds a node into a list after the specified place. For example, if our list is (4)->(6)->(8)->NULL, and we append 7 into (6), then our list will be (4)->(6)->(7)->(8)->NULL. Note that append() will not be a simple modification of the insert() function from sll0, it must handle special cases where the user wants to insert a node on a NULL position.
  
 compare(): Will read two given lists. At the first node of difference the function will output a < or > sign depending on which node held a higher value. compare(): Will read two given lists. At the first node of difference the function will output a < or > sign depending on which node held a higher value.
notes/data/fall2022/projects/sll1.1664423779.txt.gz · Last modified: 2022/09/29 03:56 by pleblanc