MervePolat977 / binary-search-tree

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

binary-search-tree

Proje 3 [7, 5, 1, 8, 3, 6, 0, 9, 4, 2] dizisinin Binary-Search-Tree aşamalarını yazınız.

Örnek: root x'dir. root'un sağından y bulunur. Solunda z bulunur vb.

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

About