Exemplo n.º 1
0
 public LazinatorArray(int numItems)
 {
     UnderlyingList = new LazinatorList <T>();
     for (int i = 0; i < numItems; i++)
     {
         UnderlyingList.Add(default);
Exemplo n.º 2
0
 public LazinatorQueue()
 {
     UnderlyingList = new LazinatorList <T>();
 }
Exemplo n.º 3
0
 public LazinatorStack()
 {
     UnderlyingList = new LazinatorList <T>();
 }