|
Binary Search Tree (C++)
|
Declaration of the BST (Binary Search Tree) class. More...
#include "Node.h"Go to the source code of this file.
Classes | |
| class | BST |
| Iterative binary search tree storing integer values. More... | |
Declaration of the BST (Binary Search Tree) class.
This header file declares the BST class, an iterative, pointer-based binary search tree implementation. It includes public method prototypes for insertion, deletion, searching, and tree traversal. Full implementation details are provided in BST.cpp.
Definition in file BST.h.