|
My Project
|
BST Node class. Available member functions include initialising constructor. More...

Public Member Functions | |
| BSTNode (ll val) | |
| Construct a new BSTNode object. More... | |
Public Attributes | |
| ll | info |
| info stored in the node | |
| ll | level |
| level of the node | |
| BSTNode * | left |
| pointer to the left child | |
| BSTNode * | right |
| pointer to the right child | |
BST Node class. Available member functions include initialising constructor.
|
inline |
Construct a new BSTNode object.
| [in] | val | input value of the node |
1.8.17