Programming Project: Iterative List 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 Arrays.sort, which uses Merge Sort when presented with an array of objects. ................
................