in DS retagged by
1,638 views
1 vote
1 vote

Which of the following need not be a binary tree?

  1. Search tree
  2. Heap
  3. AVL tree
  4. B tree
in DS retagged by
by
1.6k views

4 Comments

What is the answer given..

is it both a and b
0
0
Option D
1
1

@haralk10 see my answer, even A and B are correct.

0
0

5 Answers

0 votes
0 votes

D is the most appropriate answer.

A B-tree is a specialized M-way tree i.e. each node can have at most m childrens.

AVL tree and Heap are usually a complete binary tree.

Search Tree(assuming binary search tree). Therefore it is a binary tree.

Answer:

Related questions