摘要:我們一般看到的數學表達式就是中綴表達式,也就是將符號放在兩個數字之間。后綴表達式也就是將運算符放在相應數字的后面。后綴表達式相當于樹中的后序遍歷。通過獲得對應位置的操作符。如果對應的還是操作符,則繼續遞歸往前計算。
題目要求
Evaluate the value of an arithmetic expression in Reverse Polish Notation. Valid operators are +, -, *, /. Each operand may be an integer or another expression. Some examples: ["2", "1", "+", "3", "*"] -> ((2 + 1) * 3) -> 9 ["4", "13", "5", "/", "+"] -> (4 + (13 / 5)) -> 6
計算后綴表達式。我們一般看到的數學表達式就是中綴表達式,也就是將符號放在兩個數字之間。后綴表達式也就是將運算符放在相應數字的后面。后綴表達式相當于樹中的后序遍歷。
思路一:棧當我們遇到數字時就將數字壓入棧中,如果遇到操作符就將棧頂的兩個數字彈出,并將其根據操作符計算結構并重新壓入棧中。棧中剩下的最后的值就是我們的結果。
public int evalRPN(String[] tokens) { LinkedList思路二:遞歸stack = new LinkedList (); for(String token : tokens){ if(token.equals("+")){ int operand1 = stack.pop(); int operand2 = stack.pop(); stack.push(operand2 + operand1); }else if(token.equals("-")){ int operand1 = stack.pop(); int operand2 = stack.pop(); stack.push(operand2 - operand1); }else if(token.equals("*")){ int operand1 = stack.pop(); int operand2 = stack.pop(); stack.push(operand2 * operand1); }else if(token.equals("/")){ int operand1 = stack.pop(); int operand2 = stack.pop(); stack.push(operand2 / operand1); }else{ stack.push(Integer.valueOf(token)); } } return stack.pop(); }
從后綴表達式的末尾開始遞歸獲取操作符對應的兩個操作符。通過index獲得對應位置的操作符。如果對應的還是操作符,則繼續遞歸往前計算。
int index; public int evalRPN2(String[] tokens){ index = tokens.length-1; return recursive(tokens); } public int recursive(String[] tokens){ String current = tokens[index--]; int operand1, operand2; switch(current){ case "+" : operand1 = recursive(tokens); operand2 = recursive(tokens); return operand1 + operand2; case "-" : operand1 = recursive(tokens); operand2 = recursive(tokens); return operand2 - operand1; case "*" : operand1 = recursive(tokens); operand2 = recursive(tokens); return operand2 * operand1; case "/" : operand1 = recursive(tokens); operand2 = recursive(tokens); return operand2 / operand1; default: return Integer.valueOf(current); } }
想要了解更多開發技術,面試教程以及互聯網公司內推,歡迎關注我的微信公眾號!將會不定期的發放福利哦~
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/70232.html
Problem Evaluate the value of an arithmetic expression in Reverse Polish Notation. Valid operators are +, -, *, /. Each operand may be an integer or another expression. Note: Division between two inte...
摘要:題目鏈接來做,保存數字,碰到符號的時候就彈出兩個數字計算算完后再放入,最后里面的就是結果。 150. Evaluate Reverse Polish Notation 題目鏈接:https://leetcode.com/problems... stack來做,保存數字,碰到符號的時候就彈出兩個數字計算算完后再放入stack,最后stack里面的就是結果。 public class So...
摘要:題目根據逆波蘭表示法,求表達式的值。給定逆波蘭表達式總是有效的。逆波蘭表達式又叫做后綴表達式。解題思路可以看出逆波蘭表達式中的每一個運算符屬于該運算符前的兩個數字間的運算。如如波蘭表達式則加號前兩個數字為。 題目: 根據逆波蘭表示法,求表達式的值。 有效的運算符包括 +, -, *, / 。每個運算對象可以是整數,也可以是另一個逆波蘭表達式。 Evaluate the value of...
摘要:小鹿題目根據逆波蘭表示法,求表達式的值。給定逆波蘭表達式總是有效的。算法思路仔細觀察上述的逆波蘭表達式,可以發現一個規律就是每遇到一個操作符,就將操作符前的兩個操作數進行運算,將結果保存到原位置。 Time:2019/4/14Title: Evaluate Reverse Polish NotationDifficulty: MediumAuthor:小鹿 題目:Evaluate ...
摘要:棧法復雜度時間空間思路逆波蘭表達式的計算十分方便,對于運算符,其運算的兩個數就是這個運算符前面的兩個數。注意對于減法,先彈出的是減號后面的數。 Evaluate Reverse Polish Notation Evaluate the value of an arithmetic expression in Reverse Polish Notation. Valid operato...
閱讀 3318·2023-04-25 16:25
閱讀 3823·2021-11-15 18:01
閱讀 1600·2021-09-10 11:21
閱讀 3007·2021-08-02 16:53
閱讀 3081·2019-08-30 15:55
閱讀 2489·2019-08-29 16:24
閱讀 2098·2019-08-29 13:14
閱讀 1027·2019-08-29 13:00