Programming Project: Iterative List Merge Sort

Another fairly intuitive sorting algorithm is the one that bridge players might use to put their card hands in order: from the pile of cards in front of you, pick up one card at a time and put into its proper place with the cards that you already have picked up. Listing Three shows the implementation of this in Java 1.5.x within a linked list. ................
................