Exemplo n.º 1
0
 public chain()
 {
     head   = tail = null;
     length = 0;
 }
Exemplo n.º 2
0
 public node(T value)
 {
     next = null;
     data = value;
 }