Java编程思想—11.11—队列(Queue)

时间:2021-12-06 17:36:56

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 *///:~

解释:

  1. offer()方法是与Queue相关的方法之一,它在允许的情况下,将一个元素插入到队尾,或者返回false
  2. peek()element()将在不移除的情况下返回队头。
  3. peek()在队列为空时返回null
  4. element()在队列为空时抛出NoSuchElementException异常。
  5. poll()remove()方法将移除并返回队头;
  6. poll()在队列为空时返回null
  7. remove()在队列为空时抛出NoSuchElementException异常。