马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
本帖最后由 糖逗 于 2020-5-8 17:40 编辑
题目描述:给定一个经过编码的字符串,返回它解码后的字符串。
编码规则为: k[encoded_string],表示其中方括号内部的 encoded_string 正好重复 k 次。注意 k 保证为正整数。
你可以认为输入字符串总是有效的;输入字符串中没有额外的空格,且输入的方括号总是符合格式要求的。
此外,你可以认为原始数据不包含数字,所有的数字只表示重复的次数 k ,例如不会出现像 3a 或 2[4] 的输入。
示例:
s = "3[a]2[bc]", 返回 "aaabcbc".
s = "3[a2[c]]", 返回 "accaccacc".
s = "2[abc]3[cd]ef", 返回 "abcabccdcdcdef".
#include<string>
#include<iostream>
#include<vector>
#include <stack>
using namespace std;
string solution(string input){
stack<int> stack_int;
stack<string> stack_string;
int count = 0;
string res = "";
for(auto cha:input){
if(cha == '['){
stack_int.push(count);
stack_string.push(res);
res = "";
count = 0;
continue;
}
if(cha == ']'){
int number = stack_int.top();
stack_int.pop();
string temp;
for (int k = 0; k < number; k++){
temp.append(res);
}
res = stack_string.top() + temp;
stack_string.pop();
continue;
}
if(cha >= '0' && cha <= '9'){
count = 10*count + (cha - '0');
}
else{
res += cha;
}
}
return res;
}
int main(void){
string input;
cin >> input;
cout << solution(input) << endl;
return 0;
}
参考链接:https://leetcode-cn.com/problems ... a-di-gui-fa-by-jyd/ |