|
Aleph-w 3.0
A C++ Library for Data Structures and Algorithms
|
Generic unbalanced binary search tree. More...
Go to the source code of this file.
Classes | |
| class | Aleph::GenBinTree< NodeType, Key, Compare > |
| Simple (unbalanced) binary search tree. More... | |
| struct | Aleph::GenBinTree< NodeType, Key, Compare >::Iterator |
| Iterator on nodes of the tree. More... | |
| struct | Aleph::BinTree< Key, Compare > |
| Binary search tree with nodes without virtual destructors,. More... | |
| struct | Aleph::BinTreeVtl< Key, Compare > |
| Binary search tree with nodes with virtual destructors,. More... | |
Namespaces | |
| namespace | Aleph |
| Main namespace for Aleph-w library functions. | |
Generic unbalanced binary search tree.
Basic BST without balancing. Use for educational purposes or when data is known to be randomly ordered. For general use, prefer balanced trees like AVL or Red-Black.
Definition in file tpl_binTree.H.