收集队列
如果我想自定义队列的实现,那么正确的是 说我可以选择我想要的任何顺序(不是 FIFO),但我必须始终 尊重要删除的元素定位为“head”的事实吗?
但是对于插入操作,我没有义务将元素放在尾部(例如放入 FIFO 中)?
If I wanted to make a custom implementation of a Queue is correct to
say that I can choose whatever order I want (not FIFO) but I must always
respect the fact that the element to remove is that positioned as "head"?
but for insertion operation I'm not obliged to put the element to the tail (like into FIFO)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你是对的。 javadoc 明确指出了这一点:
You are correct. The javadoc clearly states this:
你是对的。
队列
文档 甚至明确指出了这一点(强调我的):You are correct.
The
Queue
documentation even states this explicitly (emphasis mine):