2020-0815-2020腾讯后端第一题-题解记录

题目:小Q想要给他的朋友发送一个神秘字符串,但是他发现字符串的过于长了,于是小Q发明了一种压缩算法对字符串中重复的部分进行了压缩,对于字符串中连续的m个相同字符串S将会压缩为[m|S](m为一个整数且1<=m<=100),例如字符串ABCABCABC将会被压缩为[3|ABC],现在小Q的同学收到了小Q发送过来的字符串,你能帮助他进行解压缩么? 

思路:利用栈来判断属于两个中括号之间的内容,处理之后再入栈,直到遍历结束。

#include<iostream>
#include<string>
#include<stack>
#include<algorithm>
using namespace std;

void treatStack(stack<char>& help){
	string temp = "";
	while (help.top() != '['){
		char s_top = help.top();
		temp += s_top;
		help.pop();
	}
	help.pop();
	reverse(temp.begin(), temp.end());
	int num = 0;
	int index = 0;
	while (temp[index] != '|'){
		num = num * 10 + (temp[index] - '0');
		index++;
	}
	if (num != 0){
		for (int i = 0; i < num; i++){
			for (int j = index+1; j < temp.size(); j++){
				help.push(temp[j]);
			}
		}
	}
}

int main(){
	string str;
	cin >> str;
	if (str.empty()){
		cout << "" << endl;
		return 0;
	}
	stack<char> help;
	for (int i = 0; i < str.size(); i++){
		if (str[i] == ']'){
			treatStack(help);
		}
		else{
			help.push(str[i]);
		}
	}
	string res = "";
	while (help.empty() == false){
		res += help.top();
		help.pop();
	}
	reverse(res.begin(), res.end());
	cout << res << endl;
	system("pause");
	return 0;
}

 

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 2
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值