【代码随想录算法训练营第37期 第十一天 | LeetCode20. 有效的括号、1047. 删除字符串中的所有相邻重复项、150. 逆波兰表达式求值】

代码随想录算法训练营第37期 第十一天 | LeetCode20. 有效的括号、1047. 删除字符串中的所有相邻重复项、150. 逆波兰表达式求值


一、20. 有效的括号

解题代码C++:

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

        return stk.empty();
    }
};

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



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

解题代码C++:

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

        for(int i = 0; s[i]; i ++)
        {
            if(!stk.empty() && s[i] == stk.top())
            {
                stk.pop();
            }
            else stk.push(s[i]);
        }

        string str = "";
        while(!stk.empty())
        {
            str += stk.top();
            stk.pop();
        }

        reverse(str.begin(), str.end());

        return str;
    }
};

题目链接/文章讲解/视频讲解:
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. 逆波兰表达式求值

解题代码C++:

class Solution {
public:
    int evalRPN(vector<string>& tokens) {
        stack<long long> stk;

        for(int i = 0; i < tokens.size(); i ++)
        {
            if(tokens[i] == "+" || tokens[i] == "-" || tokens[i] == "*" || tokens[i] == "/")
            {
                long long num1 = stk.top();
                stk.pop();
                long long num2 = stk.top();
                stk.pop();

                if (tokens[i] == "+") stk.push(num2 + num1);
                if (tokens[i] == "-") stk.push(num2 - num1);
                if (tokens[i] == "*") stk.push(num2 * num1);
                if (tokens[i] == "/") stk.push(num2 / num1);
            }
            else stk.push(stoll(tokens[i]));
        }

        int res = stk.top();
        stk.pop();

        return res;
    }
};

题目链接/文章讲解/视频讲解:
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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值