Java编程思想—11.11—队列(Queue)
1 定义
队列是一个典型的先进先出(FIFO)的容器。即从容器的一端放入事物,从另一端取出,并且事物放入容器的顺序与取出的顺序是相同的。队列常被当作一种可靠的将对象从程序的某个区域传输到另一个区域的途径。 LinkedList
提供了方法以支持队列的行为,并且实现了Queue
接口,因此LinkedList
可以用作Queue的一种实现。
2 Queue相关接口
//: holding/QueueDemo.java
// Upcasting to a Queue from a LinkedList.
import java.util.*;
public class QueueDemo {
public static void printQ(Queue queue) {
while(queue.peek() != null)
System.out.print(queue.remove() + " ");
System.out.println();
}
public static void main(String[] args) {
Queue<Integer> queue = new LinkedList<Integer>();
Random rand = new Random(47);
for(int i = 0; i < 10; i++)
queue.offer(rand.nextInt(i + 10));
printQ(queue);
Queue<Character> qc = new LinkedList<Character>();
for(char c : "Brontosaurus".toCharArray())
qc.offer(c);
printQ(qc);
}
} /* Output: 8 1 1 1 5 14 3 1 0 1 B r o n t o s a u r u s *///:~
解释:
-
offer()
方法是与Queue
相关的方法之一,它在允许的情况下,将一个元素插入到队尾,或者返回false
。 -
peek()
和element()
将在不移除的情况下返回队头。 -
peek()
在队列为空时返回null
; -
element()
在队列为空时抛出NoSuchElementException
异常。 -
poll()
和remove()
方法将移除并返回队头; -
poll()
在队列为空时返回null
; -
remove()
在队列为空时抛出NoSuchElementException
异常。