Exemplo n.º 1
0
 public ArrayTwoQueue()
 {
     arr = new ArrayTwo <E>();
 }
Exemplo n.º 2
0
 public ArrayTwoQueue(int capacity)
 {
     arr = new ArrayTwo <E>(capacity);
 }