예제 #1
0
 public node(int data)
 {
     info = data;
     link = null;
 }
예제 #2
0
 public StackL()
 {
     top = null;
 }