|
Algorithms_in_C++ 1.0.0
Set of 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