堆栈复杂度
如何计算栈的复杂度? 是的,我指的是Stack的各种操作(Push、Pop)。可以说这些操作的复杂度是O(1)。
How to calculate the Complexity of the Stack?
Yes, I mean the various operations of Stack (Push, Pop). How it can be said that the complexity for these operations will be O(1).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
流行
Push
θ(1)
因为这个操作不依赖于堆栈的大小,不依赖于任何东西。
Pop
Θ(1)
Push
Θ(1)
Because this operations not depends on size of stack and not depends on nothing.