On 16 Jan 2010, at 15:52, Michael Chen wrote:
Exactly, I would like to first process the linear expression, which are coefficients and a constant; how can I do it over my ast tree recursively?+ * * 2 + 3 - x y z x
Just make a data structure that can hold a polynomial - linear in your case, with operators + - *. Then just build it as in the calculator case, only that it operates on this polynomial data.
Hans _______________________________________________ [email protected] http://lists.gnu.org/mailman/listinfo/help-bison
