To be clear, I am trying to find out how Collections.sort(list, new MyComp()) method calls the compare method in which sequence.
I have a LinkedList with Employees a
Collections.sort's sorting algorithm in Java 7 is insertion sort.