优先级队列是非线性数据结构吗?

发布于 2024-08-24 19:31:22 字数 72 浏览 7 评论 0原文

如果是,那么为什么优先级队列是非线性数据结构?与线性数据结构相比,非线性数据结构的性能是否较差?如果是的话为什么?请详细解释一下。

If yes then why priority queue is a non-linear data structure? Does non-linear data sturctures are bad in performance as compared to linear ones? If yes then why? Please explain in detail.

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

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

发布评论

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

评论(2

对岸观火 2024-08-31 19:31:23

是 优先级队列是一种非线性数据结构,它是使用线性数据结构(队列)实现的

Yes Priority queue is a non linear data structure which is implemented using a linear data structure (queue)

蓝眼泪 2024-08-31 19:31:22

线性数据结构是列表和数组。 优先级队列是一个抽象的数据结构(抽象意味着它可以用其他数据结构来实现以多种方式)通常以堆的形式实现。对于性能测量,通常使用渐近操作成本。例如,N个插入操作需要多少时间?

抱歉,这是一个不完整的答案。完整的答案超出了 SO 的范围。

Linear Data Structures are lists and arrays. Priority Queue is an abstract data structure (abstract means it can be implemented in terms of other data structures in multiple ways) usually implemented in terms of a heap. For performance measurement, usually the asymptotic cost of operations is used. For example, how much time does N insertion operations take?

Sorry this is an incomplete answer. A complete answer is beyond the scope of SO.

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