Question: In Java and please have notes in your code so I see what you are doing. must also be using linked list One of the
In Java and please have notes in your code so I see what you are doing. must also be using linked list
One of the advantages of mergesort is that it can easily be adapted to sort a linked list of values. This is because the algorithm retrieves the values from the two lists being merged in the order that they occur in the lists. If the lists are linked lists, then the algorithm can simply move down the list node after node. With heapsort or quicksort, the algorithm needs to move values from random locations in the array, so they do not adapt as well to sorting a linked list. Write a program that sorts a linked list of integers into a linked list and then sort the linked list using mergesort. This will require additional linked lists, but you should use linked lists, not arrays for all your list storage.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
