sortedArrayUsing 和 NSComparison 结果:我不明白它们实际上是如何进行排序的

发布于 2024-08-17 13:02:01 字数 176 浏览 3 评论 0原文

我们正在研究对数组中的对象/元素进行排序的不同方法,对我来说没有意义的是实际排序是如何完成的。我想最令人困惑的一点是,如果“排序”方法仅将一个对象与另一个对象进行比较,它如何有效?

如果数组中有值 a、g、b、d、z、s、h,我不知道算法如何通过一次查看两个值来将此列表按字母顺序排列。

任何照明都会很棒。

We're looking at different methods to sort the objects/elements in an array, the thing that doesn't make sense to me is how the actual sorting is done. I guess the big point of confusion is how can the "sort" method be effective if it only compares one object against another?

If there are values a, g, b, d, z, s, h in the array im not getting how the algorithm is getting this list into say alphabetical order by looking at two values at a time.

Any illumination would be great.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

恍梦境° 2024-08-24 13:02:01

以下是快速排序算法的简短可视化:http://upload.wikimedia。 org/wikipedia/commons/6/6a/Sorting_quicksort_anim.gif

除此之外,您可以在 internetz 上阅读有关排序算法及其内部工作原理的信息:http://en.wikipedia.org/wiki/Sorting_algorithm

Here's short visualization of quick sort algorithm: http://upload.wikimedia.org/wikipedia/commons/6/6a/Sorting_quicksort_anim.gif

Other than that you can read about sorting algorithms and their inner workings on the internetz: http://en.wikipedia.org/wiki/Sorting_algorithm

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文