logoSEE ALGORITHMS
    Bubble Sort
    Insertion Sort
    Selection Sort
    Radix Sort
    Heap Sort
    Merge Sort
    Quick Sort

Binary Search Tree

A Binary Search Tree (BST) is like a well-organized library where each book (node) has a clear place based on its value. In a BST, each node has up to two children: the left child holds smaller values, and the right child holds larger values. This structure allows for efficient searching, adding, and removing of books, as you can quickly navigate left or right to find or insert a book in its proper place.

Enter a number:  

© 2025 See Algorithms. Code licensed under MIT, content under CC BY-NC 4.0.