s******e 发帖数: 128 | 1 Given a sequence, 3 + 4 * 5 * 6 + 3 + 7 + ... of single digits, + and *,
Evaluate it.
就是infix polish notation. 我想不出如果用 inorder recursive 或stack 怎么做。 | s******e 发帖数: 128 | 2 想出来了,就+ and *两种情况, 不用考虑很多。是*就处理了,否则留着最后处理。
。
【在 s******e 的大作中提到】 : Given a sequence, 3 + 4 * 5 * 6 + 3 + 7 + ... of single digits, + and *, : Evaluate it. : 就是infix polish notation. 我想不出如果用 inorder recursive 或stack 怎么做。
|
|