This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
libflint:binarytree [2025/01/07 03:21] – eburk | libflint:binarytree [2025/01/07 03:22] (current) – eburk | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== binarytree | + | ====== binarytree ====== |
- | Binary tree module | + | Binary tree with standard leaf operations |
- | ==== Usage ==== | + | ===== Usage ===== |
- | Create the tree. The user is responsible for memory management of the `BinTree` struct. | + | Create the tree. The user is responsible for memory management of the '' |
<code c> | <code c> | ||
Line 11: | Line 11: | ||
</ | </ | ||
- | After the tree is created, init it. The second argument on '' | + | After the tree is created, init it. The second argument on '' |
- | In this example, we are passing '' | + | In this example, we are passing '' |
<code c> | <code c> | ||
Line 24: | Line 24: | ||
</ | </ | ||
- | Next lets insert our data into the tree. The insert functions signature is '' | + | Next lets insert our data into the tree. The insert functions signature is '' |
<code c> | <code c> | ||
Line 36: | Line 36: | ||
</ | </ | ||
- | We can use '' | + | We can use '' |
- | < | + | |
+ | < | ||
└──0 | └──0 | ||
├──1 | ├──1 | ||
Line 47: | Line 48: | ||
</ | </ | ||
- | To cleanup the tree, first destroy the nodes. If you passed a deallocation function, it will be called on | + | To cleanup the tree, first destroy the nodes. If you passed a deallocation function, it will be called on the data member of each node before the node itself is freed. '' |
- | the data member of each node before the node itself is freed. '' | + | |
- | nodes inside of it, hence we must also call `free()` on the tree. | + | |
<code c> | <code c> | ||
Line 84: | Line 83: | ||
</ | </ | ||
- | ==== Structs ==== | + | ===== Structs |
- | === BinTree === | + | ==== BinTree |
Binary tree struct | Binary tree struct | ||
Line 101: | Line 100: | ||
Members: | Members: | ||
- | * '' | + | * '' |
- | * '' | + | * '' |
- | * '' | + | * '' |
- | * '' | + | * '' |
- | === BinTreeNode === | + | ==== BinTreeNode |
Node of the tree | Node of the tree | ||
Line 118: | Line 117: | ||
</ | </ | ||
- | Members: | + | Members: |
- | * '' | + | |
- | * '' | + | |
- | * '' | + | |
- | ==== Functions ==== | + | ===== Functions |
- | === bintree_init === | + | ==== bintree_init |
- | Initialize the binary tree. User is responsible for freeing memory with `bintree_destroy()`. | + | Initialize the binary tree. User is responsible for freeing memory with '' |
<code c> | <code c> | ||
Line 133: | Line 129: | ||
</ | </ | ||
- | === bintree_destroy === | + | ==== bintree_destroy |
- | Destroys the nodes inside a tree and calls the deallaction function on the data if one was provided. Does not deallocate | + | Destroys the nodes inside a tree and calls the deallaction function on the data if one was provided. Does not deallocate the tree itself, that is left to the user. |
- | the tree itself, that is left to the user. | + | |
<code c> | <code c> | ||
Line 142: | Line 137: | ||
</ | </ | ||
- | === bintree_ins_left === | + | ==== bintree_ins_left |
- | Creates a new node containing | + | Creates a new node containing |
<code c> | <code c> | ||
Line 150: | Line 145: | ||
</ | </ | ||
- | === bintree_ins_right === | + | ==== bintree_ins_right |
- | Creates a new node containing | + | Creates a new node containing |
<code c> | <code c> | ||
Line 158: | Line 153: | ||
</ | </ | ||
- | === bintree_rem_left === | + | ==== bintree_rem_left |
- | Removes and deallocates the left child node of `node`. Calls the deallocation function on the data if one was provided. | + | Removes and deallocates the left child node of '' |
<code c> | <code c> | ||
Line 166: | Line 161: | ||
</ | </ | ||
- | === bintree_rem_right === | + | ==== bintree_rem_right |
- | Removes and deallocates the right child node of `node`. Calls the deallocation function on the data if one was provided. | + | Removes and deallocates the right child node of '' |
<code c> | <code c> | ||
Line 174: | Line 169: | ||
</ | </ | ||
- | === bintree_debug_print === | + | ==== bintree_debug_print |
Prints a representation of the tree to stdout. Gets very messy with large trees. | Prints a representation of the tree to stdout. Gets very messy with large trees. | ||
Line 182: | Line 177: | ||
</ | </ | ||
- | ==== Macros | + | ==== bintree_is_eob |
- | + | ||
- | === bintree_is_eob | + | |
Utility macro that checks if the node is the End Of Branch. | Utility macro that checks if the node is the End Of Branch. | ||
Line 192: | Line 185: | ||
</ | </ | ||
- | === bintree_is_leaf === | + | ==== bintree_is_leaf |
Utility macro that checks if a node has children. | Utility macro that checks if a node has children. |