예제 #1
0
 public QueueNode(int key)
 {
     val  = key;
     next = null;
 }
예제 #2
0
 public QueueUsingLinkedList()
 {
     front = rear = null;
 }