Ejemplo n.º 1
0
 public Stack()
 {
     _list = new LinkedList2 <T>();
 }
Ejemplo n.º 2
0
 public Deque()
 {
     _list = new LinkedList2 <T>();
 }