Binary tree search
About the algorithm:
Binary tree traversal to retrieve node. Goes left or right at each node to reach its target
Categories:
Search
Efficient
Best case: Ω(1)
Worst case: O(log n)
Try the algorithm:
Load csv file
Input your own array (syntax: comma sepparated values, e.g. 1, 2, 3, 4, 5)
Generate random array (syntax: start, end, number of entries, e.g. -5, 5, 7)
Submit