public Deleni(Uzel left, Uzel right) { this.left = left; this.right = right; }
public Odcitani(Uzel left, Uzel right) { this.left = left; this.right = right; }
public virtual void add_right(Uzel right) { }
public Uzel() { this.left = null; this.right = null; }
public virtual void add_left(Uzel left) { }