public class FastSort
extends java.lang.Object
In JDK < v7, implementation of merge sort (implemented in Arrays.sort
) is
not the best one: there is redundant object array cloning, many small methods that
can be inlined etc.
This class brings the best sorting implementations, so they can be used on JDK5 and JDK6, too.
Constructor and Description |
---|
FastSort() |
Copyright © 2003-2013 Jodd Team