Would a balanced binary search tree help you complete the following task in a faster big-oh time than a balanced binary tree?
Creating a list of all elements in the tree that are smaller than some value v.
In my opinion no because what if all the values in the BST are smaller than v. Then you would have to visit each node and that would be O(n) which is not any better than a binary tree.
Am I correct?