Smoothsort
Wiki甚至有一个java实现就可以了.因为你不能比O(n)快得多(因为为了甚至找出数组是否排序需要很多时间)smoothsort是一个不错的选择.更多细节here.
The advantage of smoothsort is that it
comes closer to O(n) time if the input
is already sorted to some degree
Coctail sort
The complexity of cocktail sort in big
O notation is O(n2) for both the worst
case and the average case,but it
becomes closer to O(n) if the List is
mostly ordered before applying the
sorting algorithm,
Timsort
Java的数组实际上是在java 7中使用timsort来排序对象(sort()).时钟说明here.
总结以上是内存溢出为你收集整理的有效排序全部内容,希望文章能够帮你解决有效排序所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)