Binary Search Tree
In this lesson, we'll study binary search trees.
We'll cover the following...
Structure
A binary search tree is a node-based binary tree data structure.
For every node:
- The left subtree of a node contains only nodes with smaller keys.
- The right subtree of a node contains only nodes with larger keys.
Access this course and 1400+ top-rated courses and projects.