How would you sort a linked list?
Answers were Sorted based on User's Feedback
Answer / touchriverian
using merge sort.
http://www.chiark.greenend.org.uk/~sgtatham/algorithms/listsort.html
| Is This Answer Correct ? | 9 Yes | 3 No |
Answer / sdfg
write an insert in order function where it traverse the list until it finds a greater element and put it before it.
create a new list and insert all items in the old list to the new list using the InsertInOrder function
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / deepak pareek
I THINK....selection sort is the better way to sort the
link list.
| Is This Answer Correct ? | 1 Yes | 2 No |
How can someone display singly linked list from first to last?
What are the advantages of linked list?
What are the advantages of sorting?
What is array and string?
What are the collision resolution methods?
Why is data structure important?
Is arraylist faster than array?
Which sorting algorithm uses minimum number of swaps?
Explain stacks and queues in detail.
What is data structure operations?
What is sort order?
What sorting algorithm does arrays sort use?