示例#1
0
 public BinaryTree Create(string value)
 {
     root = null;
     root = this.CreateBinaryTree(root, ref value);
     root = root.Simplify();
     return(this);
 }
示例#2
0
 public string ReadDerivative()
 {
     root = this.root.Derivative();
     root = root.Simplify();
     return(root.ToString());
 }