刷题笔记day11

20.有效的括号

文章讲解:代码随想录
是否自己做出来通过全部用例:是

遇到的困难/犯的错误

这题面试时候遇到过,当时没做出来,事后做过功课,算是回顾了一下。

自己写的代码

class Solution {
public:
    bool isValid(string s) {
        stack<char> stk;
        for (auto c : s) {
            if (c == '(' || c == '[' || c == '{') {
                if (c == '(' ) {
                    stk.push(')');
                }
                else if (c == '[') {
                    stk.push(']');
                }
                else {
                    stk.push('}');
                }
            }
            else {
                if (stk.empty()) {
                    return false;
                }
                else {
                    if (c == stk.top()) {
                        stk.pop();
                        continue;
                    }
                    else {
                        return false;
                    }
                }

            }
        }
        return stk.empty();
    }
};

看了题解后的收获

善用栈的先进先出的特性。

1047.删除字符串中的所有相邻重复项

文章讲解:代码随想录
是否自己做出来通过全部用例:否

遇到的困难/犯的错误

想用双指针法做,发现首次去重后,之后的去重逻辑难以权衡,没有实现。

自己写的代码

看了题解思路后重新用stack写的代码:

class Solution {
public:
    string removeDuplicates(string s) {
        stack<char> stk;
        for (int i = 0; i < s.size(); ++i) {
            if (!stk.empty() && s[i] == stk.top()) {
                stk.pop();
            }
            else {
                stk.push(s[i]);
            }
        }
        string result;
        while (!stk.empty()) {
            result += stk.top();
            stk.pop();
        }
        reverse(result.begin(), result.end());
        return result;
    }
};

只用一个string的版本:

class Solution {
public:
    string removeDuplicates(string s) {
        string result;
        for (int i = 0; i < s.size(); ++i) {
            if (!result.empty() && s[i] == result.back()) {
                result.pop_back();
            }
            else {
                result.push_back(s[i]);
            }
        }
        return result;
    }
};

看了题解后的收获

用容器适配器进行去重。也可以直接用string进行去重。

150.逆波兰表达式求值

文章讲解:代码随想录
是否自己做出来通过全部用例:否

遇到的困难/犯的错误

直接看了题解,思路还是很简单的。

自己写的代码

class Solution {
public:
    int evalRPN(vector<string>& tokens) {
        stack<int> stk;
        int temp1, temp2;
        for (int i = 0; i < tokens.size(); ++i) {
            if (tokens[i] == "+" || tokens[i] == "-" || tokens[i] == "/" || tokens[i] == "*") {
                temp1 = stk.top();
                stk.pop();
                temp2 = stk.top();
                stk.pop();
                if (tokens[i] == "+") {
                    stk.push(temp2 + temp1);
                }
                else if (tokens[i] == "-") {
                    stk.push(temp2 - temp1);
                }
                else if (tokens[i] == "*") {
                    stk.push(temp2 * temp1);
                }
                else {
                    stk.push(temp2 / temp1);
                }
            }
            else {
                stk.push(stoi(tokens[i]));
            }
        }
        return stk.top();
    }
};

看了题解后的收获

还是用stack。
注:其实逆波兰表达式相当于是二叉树中的后序遍历。