Exemplo n.º 1
0
Arquivo: Stack.cs Projeto: AALOON/Dsa
 public Stack()
 {
     _linkedList = new SingleLinkedList <TElement>();
 }
Exemplo n.º 2
0
Arquivo: Queue.cs Projeto: AALOON/Dsa
 public Queue()
 {
     _linkedList = new SingleLinkedList <TElement>();
 }