This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
notes:data:fall2022:projects:dln0 [2022/10/20 17:42] – [PROGRAM] hcordell | notes:data:fall2022:projects:dln0 [2022/10/27 15:16] (current) – bolsen1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
=====BACKGROUND===== | =====BACKGROUND===== | ||
+ | Following our exploration into nodes, linked lists, and groups of linked lists. From this point forward our node library has been restarted. We are recoding all the nodes and lists functions from start, but we are now moving into doubly linked nodes. Doubly linked nodes will further our learning into dealing with double pointers, passing by reference, and unions. | ||
+ | Once you grab dln0, you will find a new header file called '' | ||
+ | <code c> | ||
+ | union info { | ||
+ | signed char value; | ||
+ | struct node *data; | ||
+ | void *other; | ||
+ | }; | ||
+ | </ | ||
+ | |||
+ | Furthermore, | ||
+ | <code c> | ||
+ | struct node { | ||
+ | union info | ||
+ | | ||
+ | | ||
+ | }; | ||
+ | </ | ||
+ | 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/ | ||
+ | |||
+ | 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 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 8: | Line 32: | ||
=====PROGRAM===== | =====PROGRAM===== | ||
dln0 has three different functions. These are:\\ | dln0 has three different functions. These are:\\ | ||
+ | |||
mk.c\\ | mk.c\\ | ||
cp.c\\ | cp.c\\ | ||
rm.c\\ | rm.c\\ | ||
- | The general order you should complete them in is mk.c first, followed by rm.c, and cp.c last. | ||
- | =====OUTPUT SPECIFICATIONS===== | ||
+ | The general order you should complete them in is mk.c first, followed by rm.c, and cp.c last.\\ | ||
+ | |||
+ | 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\\ | ||
+ | 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\\ | ||
+ | ===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 ./ | ||
+ | =====OUTPUT SPECIFICATIONS===== | ||
+ | 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 tests for this project are unit-mknode, |
+ | |||
+ | {{ : |