|
Brumski's DSA Learning Project 1.3
For Learning Data Structures and Algorithms in C++
|
This is a template class that represents a node/element in a Binary Search Tree. More...
Public Attributes | |
| N | data |
| Holds the data of a single node/element. | |
| std::unique_ptr< BSTNode< N > > | left |
| Pointer to left child. | |
| std::unique_ptr< BSTNode< N > > | right |
| Pointer to right child. | |
This is a template class that represents a node/element in a Binary Search Tree.
It can take any basic C++ data type.