Skip to content
Advertisement

expression evaluation using stack in java

My program is working with expression like 12 + 3 * 45.But Its not working expression like 12*4+(7/2). please give correction in my code.I am attaching my code:

JavaScript

Advertisement

Answer

Let’s take a look at your block which parses digits:

JavaScript

Let’s assume our tokens are {‘1’, ‘+’, ‘2’} and your initial i value is 0. We’re entering the if-body (as tokens[0] == 1), declare an sbuf variable and again make exactly the same check for that i (but we’re inside the if-block with the same check as your while condition). So, we’re going inside while loop, append tokens[0] to sbuf and increase our i. So now i is 1 and points to +, while condition is false, we parse "1" into 1 and add it to values. But now the next iteration of outer for-loop begins and the i value will be 2. So, we totally missed + as we incremented it’s value inside while-loop but haven’t processed it in any way.

Now let’s find an alternative approach:

JavaScript

This approach adds the current value right after declaring sb (I changed StringBuffer to StringBuilder as there is no need to use thread-safe StringBuffer implementation). Next we’re checking the next value of i without incrementing. If it is also a number we’re incrementing i and appending it to sb. Otherwise no changes to i happens and it will still point to the same value (1 in our case). Now your outer for-loop will increment it and you’ll correctly process +.

By the way, if you’re writing parser it’s better not only return values.pop() but also check that values.size() == 1. If the size is not one then the expression either is not correct or has not been parsed correctly.

Advertisement