了解你的排序算法|集合 1(编程语言使用的排序武器)
有没有想过我们在 C++/Java 中使用的 sort()函数或者 Python 中的 sorted()函数是如何在内部工作的?
这里列出了不同编程语言的所有内置排序算法以及它们在内部使用的算法。
- Qport () of C– Quick sort
- Optimal case time complexity-O(NlogN)
- Average case time complexity-O(NlogN)
- Worse case time complexity-O(N2)
- Auxiliary space-O(log N)
- Stable-depends on the implementation of the comparator function.
- Adaptive-none
- Optimal case time complexity-O(NlogN)
- Average case time complexity-O(NlogN)
- Worse case time complexity-O(NlogN)
- Auxiliary space-O(logN)
- Stable-none
-
Adaptive-none
-
Auxiliary space-O(N) Stable.-Yes Adaptive.-Yes Java 6 的数组。sort()–快速排序T3】*
- Optimal case time complexity-O(NlogN)
- Average case time complexity-O(NlogN)
- Optimal case time complexity-O(N)
- Average case time complexity-O(NlogN)
- Worse case time complexity-O(NlogN)
- Auxiliary space-O(N)
- Stable.-Yes
- self-adaption
- Auxiliary space-O(N)
- Stable.-Yes
-
Adaptive.-Yes
-
Sorted ()–timsort of Python (mixed merge sort and insert sort )
- Optimal case time complexity-O(N)
- Optimal case time complexity-O(N)
- Average case time complexity-O(NlogN)
- Worse case time complexity-O(NlogN)
- Auxiliary space-O(N)
- Stable.-Yes
在接下来的几集里,我们将实现 Introsort ( C++的排序武器)和 Sleep sort、Gnome Sort 以及其他非常规的排序算法。
本文由拉希特·贝尔瓦亚尔供稿。如果你喜欢极客博客并想投稿,你也可以写一篇文章并把你的文章邮寄到 review-team@geeksforgeeks.org。看到你的文章出现在极客博客主页上,帮助其他极客。
如果您发现任何不正确的地方,或者您想分享更多关于上面讨论的主题的信息,请写评论
版权属于:月萌API www.moonapi.com,转载请注明出处