User Tools

Site Tools


notes:data:fall2022:projects:dln0

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:dln0 [2022/10/20 19:31] – [BACKGROUND] abarbcalnotes:data:fall2022:projects:dln0 [2022/10/27 15:16] (current) bolsen1
Line 7: Line 7:
     signed char value;     signed char value;
     struct node *data;     struct node *data;
-    void other;+    void *other;
 }; };
 </code> </code>
  
 +Furthermore, we have made some changes to our Node structure to include a pointer to left and right. It can be seen below:
 +<code c>
 +struct node {
 +     union info     payload;
 +     struct node   *left;
 +     struct node   *right;
 +};
 +</code>
 A union is a type of data that allows to store different types of data in the same memory location. A union can contain different members/properties, but only one member can contain a value at a time. Unions allocate the memory necessary to contain the largest member, the member with the type of data that requires the most memory. A union is a type of data that allows to store different types of data in the same memory location. A union can contain different members/properties, but only one member can contain a value at a time. Unions allocate the memory necessary to contain the largest member, the member with the type of data that requires the most memory.
  
 If you recall from the sll project, info is the contents of the node. Info now has the potential to hold different types of data, not just an unsigned char, BUT it still only holds one at a time. If you recall from the sll project, info is the contents of the node. Info now has the potential to hold different types of data, not just an unsigned char, BUT it still only holds one at a time.
-The type of data it could hold is an unsigned char value, point to another Node anywhere else (could be in another group, on another list, so on), and a pointer that could point to any other type of pointer (only pointers tho).+The type of data it could hold is an unsigned char value, point to another Node anywhere else (could be in another group, on another list, so on), and a pointer that could point to any other type of pointer (only pointers though). In this project, we only need to worry about the node's left and right, and payload.
  
 +Remember that there can only be one return statement per function, I suggest having a variable that contains the exit code and change that along with the flow of the program in case of errors.
 =====SPECIFICATIONS===== =====SPECIFICATIONS=====
  
Line 32: Line 41:
 Some general advice for each function:\\ Some general advice for each function:\\
 mknode() - don't forget about the left and right pointers, explore into /inc/ to see what each node contains\\ mknode() - don't forget about the left and right pointers, explore into /inc/ to see what each node contains\\
-cpnode() - make sure to copy the entire payload, union has different types of different sizes so don't just copy the smallest one\\+cpnode() - make sure to copy the entire payload, union has different types of different sizes so don't just copy the smallest one. It may be a good idea to use your previously created mk function. Remember, do not reinvent the wheel\\
 rmnode() - not too much needed for this one, make sure you have the sufficient error checks, set to NULL after deallocation\\ rmnode() - not too much needed for this one, make sure you have the sufficient error checks, set to NULL after deallocation\\
 +===Recommended order of creation===
 +1.Mknode\\
 +2.Rmnode\\
 +3.Cpnode\\
 +=====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 ./bin/unit-lobtain". Once in gdb the "run" command with start the program, and "break (line number)" will cause the program to stop at the specified line number. Once you have hit the breakpoint you can use "display (variable name)" to see the value of a variable at every step, "n" to step to the next line, and "continue" to continue running the program until the next breakpoint. Note that if you encounter a seg fault the program will tell the where the seg fault occurs, and you can use "run" again to restart the program.
 =====OUTPUT SPECIFICATIONS===== =====OUTPUT SPECIFICATIONS=====
 All functions will return a status code, of type code_t. These codes will use bitwise operators, specifically the or operator.  All functions will return a status code, of type code_t. These codes will use bitwise operators, specifically the or operator. 
 =====UNIT TESTS===== =====UNIT TESTS=====
-Unit tests for this project are unit-mknode, unit-rmnode, and unit-cpnode. There are 33 total tests, 12 for mknode, 4 for rmnode, and 17 for cpnode. To get a general view of your entire project, run make check to see how many tests pass. To get a more detailed view of what tests are failing, ./bin/unit-(DESIRED_TEST). If you are getting segmentation faults, consider the use of gdb.+Unit tests for this project are unit-mknode, unit-rmnode, and unit-cpnode. There are 33 total tests, 12 for mknode, 4 for rmnode, and 17 for cpnode. To get a general view of your entire project, run make check to see how many tests pass. To get a more detailed view of what tests are failing, ./bin/unit-(DESIRED_TEST). If you are getting segmentation faults, consider the use of gdb.  If things aren't compiling correctly, it may be helpful to check the errors file as well. 
 + 
 +{{ :notes:data:fall2022:projects:statuscodes.jpg?nolink&400 |}}
notes/data/fall2022/projects/dln0.1666294298.txt.gz · Last modified: 2022/10/20 19:31 by abarbcal