Example #1
0
 public Queue()
 {
     this.front = null;
     this.rear  = null;
 }
Example #2
0
 // constructor
 public QueueNode(int data)
 {
     this.data = data;
     this.next = null;
 }