Vidyalelo
Data Structure · Q36

Linked Lists in Data Structures

Programming · Data Structure · question 36

Q36

How do you detect if a linked list is sorted?

A.
Traverse the list and check order
Answer
B.
Use a binary search
C.
Use a hash table to store elements
D.
Check the head pointer

Answer: Option A

Solution

Answer: Option A
No explanation is given for this question Let's Discuss on Board