使用二叉堆合并多个数组

发布于 2024-10-27 14:42:44 字数 134 浏览 2 评论 0原文

给定 k 个已排序的整数数组,每个数组包含未知的正数元素(每个数组中的元素数量不一定相同),其中所有 k 个数组中的元素总数为 n,给出将 k 个数组合并为的算法单个排序数组,包含所有 n 个元素。 该算法的最坏情况时间复杂度应为 O(n∙log k)。

Given k sorted arrays of integers, each containing an unknown positive number of elements (not necessarily the same number of elements in each array), where the total number of elements in all k arrays is n, give an algorithm for merging the k arrays into a single sorted array, containing all n elements.
The algorithm's worst-case time complexity should be O(n∙log k).

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

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

发布评论

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

评论(2

緦唸λ蓇 2024-11-03 14:42:44

将 k 排序列表命名为 1, ..., k。

A 为组合排序数组的名称。

对于每个列表 i,将 vi 中弹出,并将 (i, v) 压入最小堆。现在,堆将包含每个列表中最小条目的值和列表 id 对。

当堆不为空时,从堆中弹出 (i, v) 并将 v 附加到 A
从列表 i 中弹出下一个项目(如果它不为空)并将其放入堆中。

堆中有 n 次添加和删除。
堆在每个时间步最多包含 k 个元素。
因此,运行时间为O(n log k)

Name the k-sorted lists 1, ..., k.

Let A be the name of the combined sorted array.

For each list, i, pop v off of i and push (i, v) into a min-heap. Now the heap will contain pairs of value and list id for the smallest entries in each of the lists.

While the heap is not empty, pop (i, v) from the heap and append v to A.
Pop the next item off list i (if it's not empty) and put it in the heap.

There are n additions and removals from the heap.
The heap contains at most k elements at every time step.
Hence the runtime is O(n log k).

别在捏我脸啦 2024-11-03 14:42:44

也许不变的是堆包含尚未清空的数组中的最小元素。当您尝试从列表 i 中弹出一个项目时,如果该列表为空,您将继续从堆中弹出元素。

Maybe just that the invariant is that the heap contains the smallest elements from the arrays that haven't been emptied. When you try to pop an item off list i, if this list is empty, you go on popping elements off the heap.

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