コード例 #1
0
 public Tree(Tree left, Tree right)
 {
     this.left  = left;
     this.right = right;
 }
コード例 #2
0
 public Tree(char content, Tree left, Tree right)
 {
     this.content = content;
     this.left    = left;
     this.right   = right;
 }