Data Structures | Binary Search Trees | Question 1

Last Updated :
Discuss
Comments

What is the worst case time complexity for search, insert and delete operations in a general Binary Search Tree for a skewed tree ?

O(n) for all

O(Logn) for all

O(Logn) for search and insert, and O(n) for delete

O(Logn) for search, and O(n) for insert and delete

Share your thoughts in the comments