Ejemplo n.º 1
0
 public Queue()
 {
     list = new linked_list.LinkedList();
 }
Ejemplo n.º 2
0
 public Stack()
 {
     list = new linked_list.LinkedList();
 }