Programming Project: Iterative List Merge Sort

Also, using Collections.sort on a Java API LinkedList ends up requiring about 6% more comparisons than directly implementing a Merge Sort. Since the documentation for Collections.sort indicates that it pulls the list contents into an array, sorts the array, and then puts the sorted contents back into the list, you're probably seeing the use of ... ................
................