2015-04-20 15:36:01 -07:00
|
|
|
//: 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) {
|
2015-05-05 11:20:13 -07:00
|
|
|
Queue<Integer> queue = new LinkedList<>();
|
2015-04-20 15:36:01 -07:00
|
|
|
Random rand = new Random(47);
|
|
|
|
for(int i = 0; i < 10; i++)
|
|
|
|
queue.offer(rand.nextInt(i + 10));
|
|
|
|
printQ(queue);
|
2015-05-05 11:20:13 -07:00
|
|
|
Queue<Character> qc = new LinkedList<>();
|
2015-04-20 15:36:01 -07:00
|
|
|
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
|
|
|
|
*///:~
|