|
DSA Hacking Club Library
|
A node in the binary search tree. More...
#include <bst.h>

Public Attributes | |
| int | value |
| Value stored in this node. | |
| struct treenode * | left |
| Pointer to left child. | |
| struct treenode * | right |
| Pointer to right child. | |
A node in the binary search tree.
Each node stores an integer value and pointers to its left and right children.