public class QueueTest
{

public static void main(String[] args)throws InterruptedException 

{

Queue<String> queue = new LinkedList<String>();

for (int i = time; i >= 0; i--)

{

queue.add(i);

}

while (!queue.isEmpty()) 

{

System.out.println(queue.remove());

}

}

}

 

Queue<String> queue = new LinkedList<String>() :
Queue在implement可以有很多種形式 , 像是priority queue , LinkList , ... etc
在這裡 , 是使用LinkList來進行implement.

queue.add(i) :
要加入一個element時 , 使用method add()

queue.isEmpty() :
判斷 queue是否為空.

queue.remove() :
由queue中remove 一個element , 這裡會回傳一個String type.

arrow
arrow
    全站熱搜
    創作者介紹
    創作者 JerryCheng 的頭像
    JerryCheng

    KwCheng's blog

    JerryCheng 發表在 痞客邦 留言(0) 人氣()