day11 | 20. 有效的括号 1047. 删除字符串中的所有相邻重复项 150. 逆波兰表达式求值

20. 有效的括号

class Solution {
public:
    bool isValid(string s) {
        // 如果字符串是奇数,肯定不匹配
        if (s.size() % 2 != 0) return false;
        stack<char> st;
        for (int i = 0; i < s.size(); i++) {
            if (s[i] == '(') {
                st.push(')');
            } else if (s[i] == '[') {
                st.push(']');
            } else if (s[i] == '{') {
                st.push('}');
            } else if (st.empty() || st.top() != s[i]) {
                return false;
            } else {
                st.pop();
            }
        }
        return st.empty();
    }
};

题目链接/文章讲解/视频讲解:https://programmercarl.com/0020.%E6%9C%89%E6%95%88%E7%9A%84%E6%8B%AC%E5%8F%B7.html

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

class Solution {
public:
    string removeDuplicates(string s) {
        stack<char> st;

        for (int i = 0; i < s.size(); i++) {
            // 如果栈空或者栈顶不等于当前的元素,那么就进栈
            if (st.empty() || st.top() != s[i]) {
                st.push(s[i]);
            } else if (st.top() == s[i]) {
                // 如果相等就弹出
                st.pop();
            }
        }

        string result;
        // 依次取出栈中的元素
        while (!st.empty()) {
            result += st.top();
            st.pop();
        }
        // 还要再取反一下
        reverse(result.begin(), result.end());
        return result;
    }
};

题目链接/文章讲解/视频讲解:https://programmercarl.com/1047.%E5%88%A0%E9%99%A4%E5%AD%97%E7%AC%A6%E4%B8%B2%E4%B8%AD%E7%9A%84%E6%89%80%E6%9C%89%E7%9B%B8%E9%82%BB%E9%87%8D%E5%A4%8D%E9%A1%B9.html

150. 逆波兰表达式求值

image.png

这里if判断是数字不好判断,因为操作符的情况好写,所以else是数字的情况。

class Solution {
public:
    int evalRPN(vector<string>& tokens) {
        stack<long long> st;
        for (int i = 0; i < tokens.size(); i++) {
            if (tokens[i] == "+" || tokens[i] == "-" || tokens[i] == "*" || tokens[i] == "/") {

                // 如果是运算符就取出栈顶的两个元素运算,然后再次进栈
                long long a = st.top();
                st.pop();
                long long b = st.top();
                st.pop();
                if (tokens[i] == "+") st.push(b + a);
                else if (tokens[i] == "-") st.push(b - a);
                else if (tokens[i] == "*") st.push(b * a);
                else if (tokens[i] == "/") st.push(b / a);
            } else {
                st.push(stoll(tokens[i]));
            }

        }
        return st.top();
    }
};

题目链接/文章讲解/视频讲解:https://programmercarl.com/0150.%E9%80%86%E6%B3%A2%E5%85%B0%E8%A1%A8%E8%BE%BE%E5%BC%8F%E6%B1%82%E5%80%BC.html

  • 4
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值