Beispiel #1
0
 public Deleni(Uzel left, Uzel right)
 {
     this.left  = left;
     this.right = right;
 }
Beispiel #2
0
 public Odcitani(Uzel left, Uzel right)
 {
     this.left  = left;
     this.right = right;
 }
Beispiel #3
0
 public virtual void add_right(Uzel right)
 {
 }
Beispiel #4
0
 public Uzel()
 {
     this.left  = null;
     this.right = null;
 }
Beispiel #5
0
 public virtual void add_left(Uzel left)
 {
 }