What is the time complexity of finding an element in a binary search tree with 'n' nodes?
O(n^2)
O(log n)
O(n)
O(1)

Data Structures and Algorithms Exercises are loading ...