Multiple choice

Which of the following is not a true statement?

  1. A binary search tree is represented by the linked list using pointers.

  2. In linked list representation of binary tree, the left pointer points to the data field of the next node.

  3. A binary search tree should have data field in the linked list representation.

  4. Doubly linked list can be used to represent the binary search tree.

  5. None of the above

Reveal answer Fill a bubble to check yourself
E Correct answer
Explanation

All of the above are the true statements.