我試圖製作一個小腳本來評估Ruby中的修補後表達式。Ruby中的「評估Postfix表達式」程序
def evaluate_post(expression)
my_stack = Stack.new
expression.each_char do |ch|
begin
# Get individual characters and try to convert it to integer
y = Integer(ch)
# If its an integer push it to the stack
my_stack.push(ch)
rescue
# If its not a number then it must be an operation
# Pop the last two numbers
num2 = my_stack.pop.to_i
num1 = my_stack.pop.to_i
case ch
when "+"
answer = num1 + num2
when "*"
answer = num1* num2
when "-"
answer = num1- num2
when "/"
answer = num1/ num2
end
# If the operation was other than + - */then answer is nil
if answer== nil
my_stack.push(num2)
my_stack.push(num1)
else
my_stack.push(answer)
answer = nil
end
end
end
return my_stack.pop
end
- 我不知道一個更好的方法來檢查,如果在表達式中的人物是不使用這種粗略的方法或正則表達式的整數。你們有什麼建議嗎?
- 有沒有辦法來抽象案例。 Ruby中是否有eval(「num1 ch num2」)函數?
謝謝。我去做。 – unj2 2009-05-19 22:23:26