how to Implement MSD string sorting using queues ?
见到一个题,无论如何也想不出来,网上搜竟然也没有。
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论