Beispiel #1
0
 public LinkNode()
 {
     next = null;
 }
Beispiel #2
0
 public LinkNode()
 {
     data = default(T);
     next = null;
 }
Beispiel #3
0
 public LinkNode(T val)
 {
     data = val;
     next = null;
 }
Beispiel #4
0
 public LinkNode(LinkNode <T> p)
 {
     data = default(T);
     next = p;
 }
Beispiel #5
0
 public LinkNode(T val, LinkNode <T> p)
 {
     data = val;
     next = p;
 }