Possible Duplicate:
Why java Arrays use two different sort algorithms for different types?
So I was reading the Arrays doc on the various sort implementations. What I noticed was that some of the implementations used a tuned quicksort while others used a modified mergesort. Why the discrepancy?
Thanks!