Labs / Computer Science

Binary Search Tree

Pick a value and insert it — every number finds its slot by going left when it is smaller and right when it is larger. Then run a search to watch the comparison path light up, or an in-order traversal to see the tree unspool into a sorted list. Click any node to search straight for it.

nodes 0height 0Ready

What to try