Skip to content
This repository has been archived by the owner on Oct 2, 2024. It is now read-only.

Latest commit

 

History

History
16 lines (13 loc) · 202 Bytes

binary-search-tree.md

File metadata and controls

16 lines (13 loc) · 202 Bytes

Binary Search Tree

[7, 5, 1, 8, 3, 6, 0, 9, 4, 2]

     	     7
           /   \
          5     8
         / \      \ 
        1   6      9
       / \
       0  3
         / \
        2   4