|
Binary Search Tree (C++)
|
Declaration of the Node class. More...
Go to the source code of this file.
Classes | |
| class | Node |
| Represents a node within a binary search tree. More... | |
Declaration of the Node class.
This header declares the Node class used to represent individual nodes within a binary search tree (BST). The Node class encapsulates a single integer data value along with pointers to its left and right child nodes.
Implementation details are defined in Node.cpp.
Definition in file Node.h.