postfix-notation

    0熱度

    2回答

    我試圖製作一個小腳本來評估Ruby中的修補後表達式。 def evaluate_post(expression) my_stack = Stack.new expression.each_char do |ch| begin # Get individual characters and try to convert it to integer

    2熱度

    4回答

    我一直在研究這個中綴到後綴/ polis符號轉換器。 雖然,我不覺得解決方案是足夠的。 具體來說,j(編輯:現在稱爲索引)變量正在擾亂我。 你們有什麼建議嗎?或者有更好的方法來實現它?或者我只是擔心太多? public static string[] InfixToPostfix(string[] infixArray) { var stack = new Stack<string>(