微处理器中堆栈相关问题
我们也可以在微处理器中进行队列操作吗? (假设微处理器支持堆栈操作)
can we also do queue operations in microprocessor? (given that the microprocessor supports stack operations )
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不会。堆栈是内置的,只要有寄存器和操作来支持它即可。队列没有类似的支持。
如果你想要一个队列,你需要用代码来实现它。
No. The stack is built in insofar as there's a register and operations to support it. There is no similar support for a queue.
If you want a queue, you need to implement it in code.
有堆栈,想要队列吗??...
你总是可以在软件中实现队列。请参阅此问题了解更多信息:
有关详细讨论如何使用堆栈实现队列:
祝你好运!
Have stack, want Queue??...
You can always implement queues in software. Refer this Q for more:
For a detailed discussion on how to implement a queue using stacks:
GoodLUCK!!