Exemple #1
0
 public Queue()
 {
     list = new linked_list.LinkedList();
 }
Exemple #2
0
 public Stack()
 {
     list = new linked_list.LinkedList();
 }