InterviewSolution
Saved Bookmarks
| 1. |
Strand sort is most efficient for data stored in?(a) linked list(b) arrays(c) trees(d) graphsThe question was posed to me in class test.Enquiry is from Sorting in chapter Sorting of Data Structures & Algorithms II |
|
Answer» CORRECT choice is (a) linked list Explanation: Strand sort is most EFFICIENT when data is STORED in a linked list as it involves many insertions and deletions which is performed quite efficiently with the help of a linked list. Using an array would INCREASE time COMPLEXITY significantly. |
|