public BinaryTree Create(string value) { root = null; root = this.CreateBinaryTree(root, ref value); root = root.Simplify(); return(this); }
public string ReadDerivative() { root = this.root.Derivative(); root = root.Simplify(); return(root.ToString()); }