Algorithms_in_C++ 1.0.0
Set of algorithms implemented in C++.
|
A Node structure representing a single node in BST. More...
Public Attributes | |
int64_t | data |
The key/value of the node. | |
Node * | left |
Pointer to Left child. | |
Node * | right |
Pointer to right child. | |
A Node structure representing a single node in BST.