Example #1
0
 public doublyL()
 {
     start = null;
 }
Example #2
0
 public node(int x)
 {
     info = x;
     prev = null;
     link = null;
 }