Introduction to binary search trees (BSTs)
This lesson contains approximately 15 minutes of video content.
Introduction to binary search trees (BST)
Correction: In this video, we show
struct BinaryTreeNode<T1,T2>
with pointer data members typed Node<T1,T2>*
. Those pointers (i.e., parent
, left
, and right
) should have been typed BinaryTreeNode<T1,T2>*
.