Beispiel #1
0
 public NohPilha(int n)
 {
     data = n;
     next = null;
 }
Beispiel #2
0
 public NohPilha(int n, NohPilha nextNoh)
 {
     data = n;
     next = nextNoh;
 }
Beispiel #3
0
 public NohPilha()
 {
     next = null;
 }