Leetcode,leetcodeoj

來源:互聯網
上載者:User

Leetcode,leetcodeoj

初看貌似有點複雜,但是搞懂了非常簡單,就一個簡單的棧應用,每次遇到計算符號"+", "-", "*", "/"就將棧頂端兩個數字出棧,計算後再將結果壓棧即可。。


#include<iostream>#include<vector>#include<stack>using namespace std;class Solution {public:int evalRPN(vector<string> &tokens) {stack<int> stack;for (int i = 0; i < tokens.size(); i++){if (tokens[i] == "*" || tokens[i] == "-" || tokens[i] == "+" || tokens[i] == "/"){int val2 = stack.top();stack.pop();int val1 = stack.top();stack.pop();int tmpVal;if (tokens[i] == "*")tmpVal = val1 * val2;else if (tokens[i] == "-")tmpVal = val1 - val2;else if (tokens[i] == "+")tmpVal = val1 + val2;elsetmpVal = val1 / val2;stack.push(tmpVal);}else{int tmpVal = atoi(tokens[i].c_str());stack.push(tmpVal);}}return stack.top();}};



leetcode 是什東東有點不懂

裡面有很編程多面試的題目,可以線上編譯運行。難度比較高。如果自己能都做出來,對面大公司很有協助。我就是做的那裡的題目。
 
leetcode oj提交代碼方式是怎的?

不能寫main函數,你需要的是按照class Solution給的介面來實現它的一個成員函數

給一個參考答案
#include <sstream>using namespace std;class Solution {public: void reverseWords(string &s) { string ans = "", temp; stringstream sin(s); while(sin >> temp) { if(ans != "") { ans = temp + " " + ans; } else { ans = temp; } } s = ans; }};
 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.