TheAlgorithms/C++ 1.0.0
All the algorithms implemented in C++
|
defines the structure of a node of the tree More...
Public Attributes | |
int64_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. | |
defines the structure of a node of the tree
Definition at line 58 of file iterative_tree_traversals.cpp.
int64_t others::iterative_tree_traversals::Node::data = 0 |
The value/key of the node.
Definition at line 59 of file iterative_tree_traversals.cpp.
struct Node* others::iterative_tree_traversals::Node::left {} |
struct Node* others::iterative_tree_traversals::Node::right {} |