在图的邻接矩阵实现中查找两个给定顶点相邻的最坏情况运行时间是多少

发布于 2024-11-04 22:45:04 字数 123 浏览 0 评论 0原文

在图的邻接矩阵实现中查找两个给定顶点相邻的最坏情况运行时间是多少?这不是 O(1) 因为我知道矩阵中这些顶点的索引,以便我可以在恒定时间内选择值吗?我在书上读到它是O(n^2)。请有人解释一下如何实现这一措施。

谢谢

What is the worst-case running time for finding two given vertices are adjacent in Adjacency matrix implmentation of a graph? Is that not O(1) as I know the indices of those vertices in the matrix so that I can pick the value in constant time? I read it as O(n^2) in a book. Someone please explain it how to get to this measure.

Thanks

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

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

发布评论

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

评论(2

吝吻 2024-11-11 22:45:04

邻接矩阵占用 O(n^2) 内存,这可能是您感到困惑的地方。但是,给定两个顶点的查找是 O(1),这就是邻接矩阵的优点。

An adjacency matrix occupies O(n^2) memory, which may be where you're confused. But yes lookup given two vertices is O(1), that's the advantage of an adjacency matrix.

聚集的泪 2024-11-11 22:45:04

是的。由于您所陈述的原因,它是 O(1) 。

yes. it is O(1) for the reasons stated by you.

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