queue.java
来自「java版的数据结构的完全代码 免费提供了 学习数据结构的请下载」· Java 代码 · 共 18 行
JAVA
18 行
// Introduced in Chapter 4/** A first-in, first-out queue of Objects. */public interface Queue<E> { /** Add target to the back of this Queue. */ public void add(E target); /** Return true if this Queue is empty. */ public boolean isEmpty(); /** * Remove and return the front item from this Queue. * @throws EmptyStructureException if the Queue is empty. */ public E remove();}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?