in DS recategorized by
1,385 views
3 votes
3 votes

To sort many large objects or structures, it would be most efficient to place

  1. them in an array and sort the array
  2. pointers to them in an array and sort the array
  3. them in a linked list and sort the linked list
  4. references to them in an array and sort the array
in DS recategorized by
by
1.4k views

1 Answer

1 vote
1 vote

Option A: is suitable for a small amount  of objects but not large.

Option B:  not correct because it will extra time complexity and searching and very difficult.

Option C: suitable for a small amount of objects/elements. 

                So Option B is correct.

Answer:

Related questions