Algorithms_in_C++ 1.0.0
Set of algorithms implemented in C++.
|
A Node struct that represents a single node in a Binary Tree. More...
Public Member Functions | |
Node (int64_t _data) | |
Creates a new Node with some initial data. | |
Public Attributes | |
int64_t | data |
The value of the Node. | |
Node * | left |
The Node's left child. | |
Node * | right |
The Node's right child. | |
A Node struct that represents a single node in a Binary Tree.
|
inlineexplicit |
Creates a new Node with some initial data.
< Set value of Node data
< Initialize left child to NULL
< Initialize right child to NULL