Algorithms_in_C++ 1.0.0
Set of algorithms implemented in C++.
|
The structure to hold Nodes of the tree. More...
Public Attributes | |
std::uint64_t | data = 0 |
The value/key of the node. | |
struct Node * | left {} |
struct pointer to left subtree. | |
struct Node * | right {} |
struct pointer to right subtree. | |
The structure to hold Nodes of the tree.
data | Value that will be stored in the node. |
left | follow up left subtree. |
right | follow up right subtree. |
struct Node* others::recursive_tree_traversals::Node::left {} |
struct pointer to left subtree.
struct Node* others::recursive_tree_traversals::Node::right {} |
struct pointer to right subtree.