Programming Project: Iterative List Merge Sort

The spirit is the same, though. Remove from the old list and insert into proper position within the new list. Start by cloning the list to be sorted, and then use the clear() method on the list received so that it ends up with the sorted contents. Move one element directly over from the old list to the new list (using the LinkedList method ... ................
................