当前位置:   article > 正文

算法训练营第十一天 | LeetCode 20 有效的括号、LeetCode 1047 删除字符串中的所有相邻重复项

算法训练营第十一天 | LeetCode 20 有效的括号、LeetCode 1047 删除字符串中的所有相邻重复项

LeetCode 20 有效的括号

这题其实有点麻烦,在我看来是这样子,因为某些情况下比较难分类,最后踩了两个坑,才过的。一个是最后循环结束后要判断栈内存是否为空,一个是出栈时要判断栈是否为空,总的来说是考验对于栈内存空间的掌控吧。代码如下:

  1. class Solution {
  2. private:
  3. stack<int> mystack;
  4. public:
  5. bool isValid(string s) {
  6. for (int i = 0; i < s.length(); i++) {
  7. if (s[i] == '(' || s[i] == '[' || s[i] == '{') mystack.push(s[i]);
  8. else {
  9. if (s[i] == ')' && !mystack.empty() && mystack.top() == '(') mystack.pop();
  10. else if (s[i] == ']' && !mystack.empty() && mystack.top() == '[') mystack.pop();
  11. else if (s[i] == '}' && !mystack.empty() && mystack.top() == '{') mystack.pop();
  12. else return false;
  13. }
  14. }
  15. return mystack.empty();
  16. }
  17. };

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

这一题考栈的性质,相邻字符用未进栈的元素和进栈的元素进行模拟即可,相同且栈不为空即出栈,否则进栈,之后将栈内元素全部导入一个字符串,还要注意要写一个反转函数翻转下即可。

代码如下:

  1. class Solution {
  2. stack<int> mystack;
  3. void swap(string& s, int l, int r) {
  4. while (l < r) {
  5. char c = s[l];
  6. s[l] = s[r];
  7. s[r] = c;
  8. l++; r--;
  9. }
  10. }
  11. public:
  12. string removeDuplicates(string s) {
  13. string res = "";
  14. for (int i = 0; i < s.size(); i++) {
  15. if (!mystack.empty()) {
  16. if (s[i] == mystack.top()) mystack.pop();
  17. else mystack.push(s[i]);
  18. } else mystack.push(s[i]);
  19. }
  20. while (!mystack.empty()) {
  21. res += mystack.top();
  22. mystack.pop();
  23. }
  24. swap(res, 0, res.size() - 1);
  25. return res;
  26. }
  27. };

LeetCode 150 逆波兰表达式求值

这题其实也不难,只是细节要多一些。注意用的是字符串数组作为输入,而我们要用int型进行计算,这时候就要用到一个string转int类型的库函数stoi函数,aoti是字符数组转int类型。其他一样判断不是符号就入栈,否则取出元素进行计算。

代码如下:

  1. class Solution {
  2. private:
  3. stack<int> mystack;
  4. public:
  5. int evalRPN(vector<string>& tokens) {
  6. for (int i = 0; i < tokens.size(); i++) {
  7. if (tokens[i] != "+" && tokens[i] != "-" && tokens[i] != "*" && tokens[i] != "/") {
  8. mystack.push(stoi(tokens[i]));
  9. } else if (tokens[i] == "+") {
  10. int a = mystack.top();
  11. mystack.pop();
  12. int b = mystack.top();
  13. mystack.pop();
  14. mystack.push(a+b);
  15. } else if (tokens[i] == "-") {
  16. int a = mystack.top();
  17. mystack.pop();
  18. int b = mystack.top();
  19. mystack.pop();
  20. mystack.push(b-a);
  21. } else if (tokens[i] == "*") {
  22. int a = mystack.top();
  23. mystack.pop();
  24. int b = mystack.top();
  25. mystack.pop();
  26. mystack.push(a*b);
  27. } else if (tokens[i] == "/") {
  28. int a = mystack.top();
  29. mystack.pop();
  30. int b = mystack.top();
  31. mystack.pop();
  32. mystack.push(b/a);
  33. }
  34. }
  35. return mystack.top();
  36. }
  37. };

简化后如下:

  1. class Solution {
  2. private:
  3. stack<int> mystack;
  4. string opera[4] = {"+","-","*","/"};
  5. public:
  6. int evalRPN(vector<string>& tokens) {
  7. for (int i = 0; i < tokens.size(); i++) {
  8. if (tokens[i] != opera[0] && tokens[i] != opera[1] && tokens[i] != opera[2] && tokens[i] != opera[3]) {
  9. mystack.push(stoi(tokens[i]));
  10. } else {
  11. int a = mystack.top();
  12. mystack.pop();
  13. int b = mystack.top();
  14. mystack.pop();
  15. if (tokens[i] == opera[0])
  16. mystack.push(a+b);
  17. if (tokens[i] == opera[1])
  18. mystack.push(b-a);
  19. if (tokens[i] == opera[2])
  20. mystack.push(a*b);
  21. if (tokens[i] == opera[3])
  22. mystack.push(b/a);
  23. }
  24. }
  25. return mystack.top();
  26. }
  27. };

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/517858
推荐阅读
相关标签
  

闽ICP备14008679号