栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > C/C++/C#

荣耀机考字符串展开C++

C/C++/C# 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

荣耀机考字符串展开C++

题目描述
给定一个字符串,字符串包含数字、大小写字母以及括号(包括大括号,中括号,小括号),括号可以嵌套,即括号里面可以出现数字和括号。

按照如下规则对字符串进行展开,不需要考虑括号不成对的问题,不考虑数字后面没有括号的情况,即 2a2(b)不考虑。

数字表示括号里的字符串重复的次数,展开后的字符串不包含括号
将字符串进行逆序展开

输入abc2{de3[fg]}

输出gfgfgfedgfgfgfedcba
#include 
#include
#include
#include
#include
using namespace std;
int main()
{
    string str;
    while (cin >> str)
    {
        string res = "";
        stack st;
        int len = str.size();
        for (int i = 0; i < len; i++)
        {
            if (str[i] == ')' || str[i] == ']' || str[i] == '}')
            {
                string tmp = "";
                while (!(st.top() == '(' || st.top() == '[' || st.top() == '{'))
                {
                    tmp += st.top();
                    st.pop();
                }
                reverse(tmp.begin(), tmp.end());
                st.pop();
                string numTmp = "";
                while (!st.empty() && st.top() >= '0' && st.top() <= '9')
                {
                    numTmp += st.top();
                    st.pop();
                }
                reverse(numTmp.begin(), numTmp.end());
                int num = stoi(numTmp);
                string newStr = "";
                while (num--)
                {
                    newStr += tmp;
                }
                for (int j = 0; j < newStr.size(); j++)
                {
                    st.push(newStr[j]);
                }
            }
            else
            {
                st.push(str[i]);
            }

        }
        while (!st.empty())
        {
            res += st.top();
            st.pop();
        }
        cout << res << endl;
       

    }
   
    return 0;
}

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/433687.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号