Which of the following tree data structures is not a balanced binary tree?
Options
- A. B-tree
- B. AVL tree
- C. Red-black tree
- D. Splay tree
A. B-tree
It is a self-balancing binary search tree.
Height difference between left and right subtree ≤ 1.
Always balanced.
Also a self-balancing binary search tree.
Maintains balance using color properties.
It is a self-adjusting binary search tree.
After every operation, accessed node is moved to root.
It does not guarantee strict balance at all times, but it is still a binary tree.
It is not a binary tree.
Each node can have more than two children.
Therefore, it is not a balanced binary tree.
Attempt Quiz Now:
BPSC Tre 4.0 DSA Practice Set