how to Implement MSD string sorting using queues ?

发布于 2022-09-05 15:25:52 字数 1123 浏览 17 评论 0

见到一个题,无论如何也想不出来,网上搜竟然也没有。

Queue sort. Implement MSD string sorting using queues, as follows:
Keep one queue for each bin. On a first pass through the items to be
sorted, insert each item into the appropriate queue, according to its
leading character value. Then, sort the sublists and stitch together
all the queues to make a sorted whole. Note that this method does not
involve keeping the count[] arrays within the recursive method.

题目中说用了队列就不用count数组了,而且应该先把队列内的元素排序再拼接起来。我唯一能够想到的就是在每一个递归创建队列数组,递归排序。这样以来太浪费空间,要比使用count数组多了好几倍,我感觉这应该不是作者的本意。还有就是作者说

Then, sort the sublists and stitch together all the queues to make a
sorted whole.

如果不用递归,直接在队列内排序,那样时间复杂度直接上了O(nlgn), 就不是MSD的O(n)了,也应该是不合适的。
这个问题google, stackoverflow 上都没有。如果各位大神有好的想法请分享一下。
原题在 algorithm P727
图片描述

图片描述

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文