⚠️ Please use a computer for the best experience

Binary Search Tree

An ordered binary tree where left children are smaller and right children are larger

Time Complexity

OperationAverageWorst Case
InsertO(log n)O(n)
SearchO(log n)O(n)
DeleteO(log n)O(n)
Build from n nodesO(n log n)O(n²)

Controls

Nodes (0)

No nodes yet. Add some above!