What is the smartest way to design a math parser? what i mean is a function that takes a math string (like: "2 + 3 / 2 + (2 * 5)") and returns the calculated value? I did write one in VB6 ages ago but it ended up being way to bloated and not very portable (or smart for that matter...). General ideas, psuedo code or real code is appreciated.
|
1
|
|
|
|
|
|
A pretty good approach would involve two steps. The first step involves converting the expression from infix to postfix notation. Once that's done, it's pretty trivial to write a postfix evaluator. |
||
|
|
|
|
You have a couple of approaches. You could generate dynamic code and execute it in order to get the answer without needing to write much code. Just perform a search on runtime generated code in .NET and there are plenty of examples around. Alternatively you could create an actual parser and generate a little parse tree that is then used to evaluate the expression. Again this is pretty simple for basic expressions. Check out codeplex as I believe they have a math parser on there. Or just look up BNF which will include examples. Any website introducing compiler concepts will include this as a basic example. |
||
|
|
|
|
Assuming your input is an infix expression in string format, you could convert it to postfix and, using a pair of stacks: an operator stack and an operand stack, work the solution from there. You can find general algorithm information at the Wikipedia link. |
||
|
|
|
|
If you have an "always on" application, just post the math string to google and parse the result. Simple way but not sure if that's what you need - but smart in some way i guess. |
||||
|
|
|
This is a great tutorial series to get started writing your own parser. It's really not that hard. |
||
|
|
|
|
The related question Equation (expression) parser with precedence? has some good information on how to get started with this as well. -Adam |
||
|
|
|
|
There's a few tutorials on JavaCC that use a calculator as an example on how to use JavaCC to generate a parser, like this tutorial or the one included in the JavaCC distribution by default. Ofcourse this is java based, but there's quite some EBNF based parser generators out there. |
||
|
|
|
|
I wrote a few blog posts about designing a math parser. There is a general introduction, basic knowledge about grammars, sample implementation written in Ruby and a test suite. Perhaps you will find these materials useful. |
||
|
|
|
|
I have written an infix to postfix algorithm some years ago. I put it on my blog tonight so you can have a look at it. It is not the same as Dijkstra's. He uses a stack, I only use an array. I think its quite neat. Please have a look. |
||
|
|
|
|
ANTLR is a very nice LL(*) parser generator. I recommend it highly. |
||
|
|
|
|
|
||
|
|
