码迷,mamicode.com
首页 > 其他好文 > 详细

Leetcode 20

时间:2018-09-11 18:05:41      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:color   ring   for   垃圾   ack   class   style   差距   lse   

//嘻嘻,垃圾的我写了一个小时,各种bug,丑的要死
class
Solution { public: bool isValid(string s) { stack<char> st; if(s == "") return true; if(s[0] == ) || s[0] == ] || s[0] == }) return false; st.push(s[0]); int cnt = 1; while(1){ if(st.top() == (){ if(s[cnt] == )){st.pop();cnt++;} else if(s[cnt] == [||s[cnt] == {||s[cnt] == (){st.push(s[cnt++]);} else return false; } else if(st.top() == [){ if(s[cnt] == ]){st.pop();cnt++;} else if(s[cnt] == [||s[cnt] == {||s[cnt] == (){st.push(s[cnt++]);} else return false; } else if(st.top() == {){ if(s[cnt] == }){st.pop();cnt++;} else if(s[cnt] == [||s[cnt] == {||s[cnt] == (){st.push(s[cnt++]);} else return false; } else return false; if(cnt < s.size()&&st.empty()){st.push(s[cnt++]);} if(cnt >= s.size()) break; } if(st.empty()) return true; else return false; } };

 别人写的:差距啊!

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

 

Leetcode 20

标签:color   ring   for   垃圾   ack   class   style   差距   lse   

原文地址:https://www.cnblogs.com/cunyusup/p/9629069.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!