Exemplo n.º 1
0
 public TKey(TKey copy)
 {
     this.nk = new TKeyNK(copy.nk.value, copy.nk.tt, copy.nk.next);
 }
Exemplo n.º 2
0
 public TKey(Value value, int tt, Node next)
 {
     this.nk = new TKeyNK(value, tt, next);
 }
Exemplo n.º 3
0
 public TKey()
 {
     this.nk = new TKeyNK();
 }