예제 #1
0
 public HeapNode(data key, HeapNode next)
 {
     this.key  = key;
     this.next = next;
 }
예제 #2
0
 public ConcatenateListNode(data key, ConcatenateListNode next)
 {
     this.key  = key;
     this.next = next;
 }