Write a program that evaluates a given arithmetic expression represented as a string. The expression may contain non-negative integers, the operators +
, -
, *
, /
, and parentheses (
and )
. The operators should follow the standard precedence rules (i.e., multiplication and division have higher precedence than addition and subtraction) and parentheses should override the default precedence.
eval
in various languages). The parsing and evaluation logic must be implemented manually.For example, given the input string:
"2 * (3 + 4) - 5 / 2"
The expected output is:
13
Implement a function that takes an arithmetic expression string as input and returns its evaluated result as an integer. Ensure that your solution handles nested parentheses and adheres strictly to the operator precedence rules.