This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
haas:fall2014:data:projects:dlt0 [2014/11/17 22:28] – [Reference Implementation] wedge | haas:fall2014:data:projects:dlt0 [2014/11/22 14:51] (current) – [Errata] wedge | ||
---|---|---|---|
Line 11: | Line 11: | ||
This section will document any updates applied to the project since original release: | This section will document any updates applied to the project since original release: | ||
- | * __revision | + | * __revision |
+ | * unit-addnode had a typo where it was expecting an empty tree to have a height of 0 instead of -1 (FIXED) | ||
+ | * unit-traverse had a number of typos, and saw some increased ruggedness: | ||
+ | * missing semi-colon on line 15 (FIXED) | ||
+ | * invalid variable reference (myList instead of tmpList) on/around line 52 (FIXED) | ||
+ | * extra checks to test invalid modes | ||
+ | * unit-set_mode has been deployed | ||
+ | * valid and invalid modes are checked | ||
+ | * unit-searchtree has been deployed | ||
+ | * NULL, empty, and non-empty tree searches of valid and invalid values | ||
+ | * verify-node.sh has been updated to show absolute totals | ||
+ | * verify-tree.sh has been updated to include new unit tests in its totals | ||
+ | * __revision 2__: new unit tests and verify scripts added (20141121) | ||
+ | * unit-balance has been deployed | ||
+ | * corresponding verify-balance.sh has been deployed | ||
+ | * the unit test for balance assumes a pivot based on the middle (if odd), or left-middle (if even) node | ||
+ | * unit-grabnode has been deployed | ||
+ | * corresponding verify-grabnode.sh has been deployed | ||
+ | * the grabnode unit test, like traverse, tests all 3 implementations in one unit test | ||
+ | * verify-tree.sh has been updated to include new unit tests | ||
+ | * __revision 3__: tweaks, comments, and new unit tests and verify script added (20141122) | ||
+ | * unit-grabnode may not have been working truly as intended. FIXED | ||
+ | * also added a specific test for grabbing from a single node tree | ||
+ | * performs 6 tests in total- NULL, empty, one-node, one node grabbed, two nodes grabbed, three nodes grabbed | ||
+ | * unit-addnode has added tests (looks like 35 in total when correctly implemented) | ||
+ | * unit-copytree has been deployed | ||
+ | * corresponding verify-copytree.sh has been deployed | ||
+ | * we perform 6 tests- NULL, empty, one-node, populated, populated and balanced, populated and node grabbed | ||
+ | * verify-tree.sh has been updated to include new unit test | ||
=====Objective===== | =====Objective===== | ||
Line 40: | Line 68: | ||
* a tree has a **root** which forms the basis or starting point of the structure; all nodes are reachable (and related through means of descendance) from the root. | * a tree has a **root** which forms the basis or starting point of the structure; all nodes are reachable (and related through means of descendance) from the root. | ||
* to put an item on the tree, we insert or **add** it (which you will have 3 separate opportunities to implement in this project!). When we add a node to the tree, it gets positioned in the appropriately available child link off some parent node. | * to put an item on the tree, we insert or **add** it (which you will have 3 separate opportunities to implement in this project!). When we add a node to the tree, it gets positioned in the appropriately available child link off some parent node. | ||
- | * to get an item off of the tree, we **get** it. Just as with a list, disconnecting a node from the structure can involve a lot of work to maintain connections and overall integrity of the data structure. | + | * to get an item off of the tree, we **grab** it (my term- often times it is referred to as deleting a node from the tree). Just as with a list, disconnecting a node from the structure can involve a lot of work to maintain connections and overall integrity of the data structure. |
+ | * an important action that will be taking place is the traversal of the tree- ie walking it in certain orders to achieve desired results (sorting/ | ||
As we will be placing nodes in the tree according to their stored values (lesser values go to the left, or previous; greater values go to the right, or next), our tree will naturally sort our data for us. | As we will be placing nodes in the tree according to their stored values (lesser values go to the left, or previous; greater values go to the right, or next), our tree will naturally sort our data for us. | ||
Line 177: | Line 206: | ||
===Reverting back to using your code=== | ===Reverting back to using your code=== | ||
- | If you were trying out the reference implementation to verify | + | If you were trying out the reference implementation to verify |
<cli> | <cli> | ||
Line 188: | Line 217: | ||
Be sure to run the various node unit tests and verification scripts to see which functions have fallen out of compliance with the node struct specification changes issued in this project. The **verify-node.sh** script can be especially useful in getting a big picture view of what work is needed. | Be sure to run the various node unit tests and verification scripts to see which functions have fallen out of compliance with the node struct specification changes issued in this project. The **verify-node.sh** script can be especially useful in getting a big picture view of what work is needed. | ||
- | ====Queue library unit tests==== | + | ====Tree library unit tests==== |
- | In **testing/ | + | In **testing/ |
- | * **unit-add.c** - unit test for the various | + | * **unit-addnode.c** - unit test for the various **addnode()** library |
- | * **unit-find.c** - unit test for the various | + | * **unit-searchtree.c** - unit test for the various **searchtree()** library |
- | * **unit-get.c** - unit test for getnode_*() library functions | + | * **unit-grab.c** - unit test for **grabnode_*()** library functions |
* **unit-set_mode.c** - unit test for **set_mode()** library function | * **unit-set_mode.c** - unit test for **set_mode()** library function | ||
* **unit-balance.c** - unit test for **balance()** library function | * **unit-balance.c** - unit test for **balance()** library function | ||
- | * **unit-treeops.c** | + | * **unit-treeops.c** |
- | * **unit-show.c** - unit test for tree displaying | + | * **unit-traverse.c** - unit test for **traverse_*()** library |
+ | * **unit-print.c** - unit test for displaying tree structure | ||
+ | |||
+ | **NOTE**: At the time of project release, unit tests are not yet available; so they will be released as they are developed. | ||
There are also corresponding **verify-FUNCTION.sh** scripts that will output a " | There are also corresponding **verify-FUNCTION.sh** scripts that will output a " | ||
Line 217: | Line 249: | ||
=====Expected Results===== | =====Expected Results===== | ||
- | To assist you in verifying a correct implementation, | + | To assist you in verifying a correct implementation, |
Line 241: | Line 273: | ||
====tree library==== | ====tree library==== | ||
- | Here is what you should get for queue: | + | Here is what you should get for tree: |
<cli> | <cli> | ||
lab46: | lab46: | ||
- | =================================================== | + | coming soon |
- | = | + | |
- | =================================================== | + | |
- | [mkqueue] Total: | + | |
- | [cpqueue] Total: | + | |
- | [rmqueue] Total: | + | |
- | [purge] Total: | + | |
- | [enqueue] Total: | + | |
- | [dequeue] Total: | + | |
- | =================================================== | + | |
- | [RESULTS] Total: | + | |
- | =================================================== | + | |
lab46: | lab46: | ||
</ | </ |