并查算法

发布于 2024-12-09 06:55:11 字数 256 浏览 1 评论 0原文

我正在阅读著名的并集查找问题,书中写道:“查找或并集将花费 O(n) 时间,而另一个则需要 O(n) 时间。将需要O(1)......”

但是使用位串来表示集合怎么样? 那么 union(使用位 OR)和 find(遍历集合列表检查相应位是否为 1)都将花费 O(1)..

这个逻辑有什么问题?

I was reading about the famous union-find problem, and the book was saying: "either the find or the union will take O(n) time, and the other one will take O(1)...."

But what about using bit strings to represent the set?
Then both union (using bit OR) and find (iterating through set lists checking the corresponding bit is 1) will take O(1)..

What is wrong with that logic?

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

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

发布评论

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

评论(2

唱一曲作罢 2024-12-16 06:55:11

这两个操作都可以在 O(Alpha(n)) 的平摊时间内完成,其中 Alpha 是阿克曼函数的反函数(增长非常< /em> 慢慢地)。你必须将问题表示为福雷斯特。选择某个子图(树节点)的代表,并集操作将合并树(将较小的树挂在较高的树的根下方)。并集操作只是遍历到根并缩短遍历的路径(将搜索到的元素(可能是所有遍历的元素)挂在根下方)。

Both operations can be done in amortized time of O(Alpha(n)), where Alpha is an inverse of the Ackermann function (grows very slowly). You have to represent the problem as a forrest. Choose a representative of some subgraph (tree node) and the union operation will merge the trees (hang the smaller tree below the root of the higher). The union operation simply traverses to the root AND shorthens the traversed path (hangs the searched element (possibly all traversed elements) below the root).

这样的小城市 2024-12-16 06:55:11

使用位域

  • 联合将是 O(n)。您假设可以对两个本机整数执行简单的位 or 操作,但如果 n 很大,则显然不能使用内置类型。
  • 查找的时间复杂度为 O(1)。您不必迭代,您知道该位的确切位置。

此外,位域并不真正适合任意集。例如,如果您有一个可以包含任何 32 位整数的集合,则需要一个大小为 4G/8=0.5G 的位域。

With a bitfield

  • union is going to be O(n). You assume that you can do a simple bit or on two native integers but if n is large you obviously cannot use builtin types.
  • finding is going to be O(1). You don't have to iterate, you know the exact location of the bit.

Also, a bitfield is not really suited for arbitrary sets. For example if you have a set that can contain any 32bit integer, you need a bitfield with a size of 4G/8=0.5G.

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