edited by
6,439 views
4 4 votes

The worst case time complexity of AVL is tree is better in comparison to binary search tree for

  1. Search and Insert Operations
  2. Search and Delete Operations
  3. Insert and Delete Operations
  4. Search, Insert and Delete Operations

1 Answer

Best answer
7 7 votes

Correct Answer would be D) Search, Insert and Deletion operation
 

Because Search is $O(\log N)$ since AVL trees are always balanced. Insertion and deletions are also $O(\log n)$ Where as in case of BST it is $O(n)$.

selected by
Answer:
Position:
Show:

Related questions

3 3 votes
2 2 answers
8.9k
8.9k views
go_editor asked Jul 8, 2016
8,942 views
In which tree, for every node the height of its left subtree and right subtree differ almost by 1?Binary Search TreeAVL TreeThreaded Binary TreeComplete Binary Tree
0 0 votes
2 answers 2 answers
5.6k
5.6k views
go_editor asked Jul 11, 2016
5,595 views
Given an empty stack, after performing push(1), push(2), pop, push(3), push(4), pop, pop, push(5), pop, what is the value of the top of the stack?4321
0 0 votes
1 answers 1 answer
10.5k
10.5k views
go_editor asked Jul 10, 2016
10,452 views
A hash function $f$ defined as $f (key) = key \mod 13$, with linear probing is used to insert keys 55, 58, 68, 91, 27, 145. What will be the location of 79?1234
1 1 vote
1 1 answer
566
566 views
admin asked Jul 28, 2023
566 views
Given below are two statements: one is labelled as Assertion $\mathrm{A}$ and the other is labelled as Reason $\mathrm{R}$.Assertion $\mathrm{A}$: The AVL trees are more ...