TheAlgorithms/C++ 1.0.0
All the 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. |
Definition at line 79 of file recursive_tree_traversal.cpp.
std::uint64_t others::recursive_tree_traversals::Node::data = 0 |
The value/key of the node.
Definition at line 80 of file recursive_tree_traversal.cpp.
struct Node* others::recursive_tree_traversals::Node::left {} |
struct Node* others::recursive_tree_traversals::Node::right {} |