6
Q:
A) Incomplete Binary Tree | B) Complete Binary Tree |
C) Full Binary Tree | D) None |
Answer: B) Complete Binary Tree
Explanation:
Explanation:
Full binary tree loses its nature when operations of insertions and deletions are done. For incomplete binary trees, extra storage is required and overhead of NULL node checking takes place. So complete binary tree is the better one since the property of complete binary tree is maintained even after operations like additions and deletions are done on it.