Example #1
0
 public SkipListNode(TNKey key, TNValue val)
 {
     this.KeyValuePair = new SkipKVPair <TNKey, TNValue>(key, val);
     this.isFront      = true;
 }
Example #2
0
 public SkipListNode()
 {
     this.KeyValuePair = new SkipKVPair <TNKey, TNValue>(default(TNKey), default(TNValue));
     this.isFront      = true;
 }