private void btnRes_Click(object sender, EventArgs e) { string Post = txtDatos.Text; operacion op = new operacion(ecuacion); op.evaluarPost(Post); op.evaluarPre(Post); textBox2.Text = arbol.postOrdenNotacion(); textBox1.Text = arbol.preOrdenNotacion(); }
private void cmdAgregar_Click(object sender, EventArgs e) { txtInOrden.Text = txtDatos.Text; ecuacion = txtDatos.Text; operacion op = new operacion(ecuacion); op.alamacenar(); arbol.crearArbol(); txtPostOrden.Text = arbol.PostOrden(); txtPreOrden.Text = arbol.PreOrden(); }