When will you sort an array of pointers to list elements,
rather than sorting the elements themselves?
Answers were Sorted based on User's Feedback
Answer / pavan
If the Data structures that we are sorting are big and
located at different places then I prefer sorting pointers
rather than data itself
| Is This Answer Correct ? | 39 Yes | 4 No |
Answer / kumar gaurav
if the data structure is too large,and the pointers refer to
many data then if we sort pointers then,we can easily know
where to start at,it will be very beneficial,and sorting the
elements will take a much longer time,so sorting off
elements is not beneficial
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / basav (shiv shankar)
It can be used when we store data elements at the bottom.
i.e., while storing data/records at the leaf level. Here we
generally store pointers in nodes in sorted order to make
sure the linear order of records.
Example, B+ trees.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / yenealem
using pointers makes easier data manipulation on data
structuring. Therefore, when one uses array of pointers in
sorting data makes data structuring easier.Furthermore,
When pointers are arranged in array they are easier for
arithmetic operation.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / prasad
when you are using linked lists for
storing the elements.
| Is This Answer Correct ? | 6 Yes | 16 No |
What do you mean by spanning tree?
How many types of data structure are there?
Why null is not allowed in treemap?
List some applications of tree-data structure?
What is the meaning of anonymous array? Explain with an example?
Explain how to find 3rd element from end in a linked list in one pass?
What is the best data structure and algorithm to implement cache?
When ArrayIndexOutOfBoundsException occurs?
applications of linked lists and mostly used linked list?
What are the average and worst time complexity in a sorted binary tree is
What is the Difference between sax and dom parser?
Define a binary search tree?