您还没有说在层次结构中的哪个位置添加该minus
方法,但看起来您正在将它添加到上面plus
并使其成为根。
unary -
如果你想拥有比+
and更高的优先级,你需要把它放在最后*
。
在你的伪代码中,这样的东西应该可以工作:
method times
minus()
while(consume(times_t))
minus()
end
end
method minus
if(consume(minus_t))
// next number should have a unary minus attached
number()
else
number()
end
end
这些天我正在学习解析器,所以我根据你的伪代码编写了一个完整的解析器,它在 LiveScript 中,但应该很容易理解。
编辑:在 jsfiddle.net 上运行示例 - http://jsfiddle.net/Dogbert/7Pmwc/
parse = (string) ->
index = 0
is-digit = (d) -> '0' <= d <= '9'
plus = ->
str = times()
while consume "+"
str = "(+ #{str} #{times()})"
str
times = ->
str = unary-minus()
while consume "*"
str = "(* #{str} #{unary-minus()})"
str
unary-minus = ->
if consume "-"
"(- #{number()})"
else
number()
number = ->
if is-digit peek()
ret = peek()
advance()
while is-digit peek()
ret += peek()
advance()
ret
else
throw "expected number at index = #{index}, got #{peek()}"
peek = ->
string[index]
advance = ->
index++
consume = (what) ->
if peek() == what
advance()
true
plus()
console.log parse "4+5*6"
console.log parse "-4+5"
console.log parse "-4*-5+-4"
输出:
(+ 4 (* 5 6))
(+ (- 4) 5)
(+ (* (- 4) (- 5)) (- 4))
PS:您可能想查看Operator-precedence Parsers以相对容易地解析复杂的优先级/关联性。