TheAlgorithms/C++ 1.0.0
All the 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.
Definition at line 56 of file inorder_successor_of_bst.cpp.
int64_t operations_on_datastructures::inorder_traversal_of_bst::Node::data |
The key/value of the node.
Definition at line 58 of file inorder_successor_of_bst.cpp.
Node* operations_on_datastructures::inorder_traversal_of_bst::Node::left |
Pointer to Left child.
Definition at line 59 of file inorder_successor_of_bst.cpp.
Node* operations_on_datastructures::inorder_traversal_of_bst::Node::right |
Pointer to right child.
Definition at line 60 of file inorder_successor_of_bst.cpp.