コード例 #1
0
 public noddes(noddes parent)
 {
     leave = false;
     this.Left = null;
     this.parent = parent;
     this.Right = null;
 }
コード例 #2
0
 public node(node parent, char c)
 {
     leave = true;
     sympol = c;
     this.Left = null;
     this.parent = parent;
     this.Right = null;
 }
コード例 #3
0
 public noddes()
 {
     leave = false;
     root = true;
     this.Left = null;
     this.parent = null;
     this.Right = null;
 }