题解 | #点击消除#

点击消除

https://www.nowcoder.com/practice/8d3643ec29654cf8908b5cf3a0479fd5

#include <iostream>
#include <algorithm>
#include <stack>

using namespace std;

int main() {
    string a;
    stack<char> stk;
    cin >> a;
    for (int i = 0; i < a.size(); i++) {
        if (stk.empty()) {
            stk.push(a[i]);
        }
        else {
            if (stk.top() == a[i]) {
                stk.pop();
            }
            else {
                stk.push(a[i]);
            }
        }
    }
    if (stk.empty())
        cout << 0 << endl;
    else {
        int n = stk.size();
        char b[n];
        for (int i = n-1; i >= 0; i--) {
            b[i] = stk.top();
            stk.pop();
        }
        for (int i = 0; i < n; i++) {
            cout << b[i];
        }
    }
    return 1;
}

全部评论

相关推荐

努力学习的小绵羊:我反倒觉得这种挺好的,给不到我想要的就别浪费大家时间了
点赞 评论 收藏
分享
粗心的雪碧不放弃:纯学历问题,我这几个月也是一直优化自己的简历,后来发现优化到我自己都觉得牛逼的时候,发现面试数量也没有提升,真就纯学历问题
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务