题目描述:
小Q想要给他的朋友发送一个神秘字符串,但是他发现字符串的过于长了,于是小Q发明了一种压缩算法对字符串中重复的部分进行了压缩,对于字符串中连续的m个相同字符串S将会压缩为[m|S](m为一个整数且1<=m<=100),例如字符串ABCABCABC将会被压缩为[3|ABC],现在小Q的同学收到了小Q发送过来的字符串,你能帮助他进行解压缩么?
#include <iostream>
#include <string>
using namespace std;
int main(){
string s;
cin>>s;
int i = 0;
while(i < s.length()){//一直比较到s结尾
if(s[i] == ']'){//如果当前字符为]
int j = i;//j用来向前寻找与]相匹配的[
int k = 0;//k用来记录'|'所在位置
while(s[j] != '['){//前先查找
if(s[j] == '|')//遇到|,记录下来
k = j;
j--;//退出时候j位于[位置
}
int len = stoi(s.substr(j+1,k-j));//长度为j+1到k-j,substr获得字符串s中从第0位开始的长度为5的字符串
string s1 = s.substr(k+1,i - k - 1);
string s2;
for(int si = 0; si < len; si++){//将识别到的括号内容进行解码
s2 += s1;
}
s = s.replace(j,i-j+1,s2);
i = j;//替换后i所指向的内容变化,从替换部分的头开始再寻找【重要】
}
i++;
}
cout<<s<<endl;
}
字符串之replace()
/*用法一:
*用str替换指定字符串从起始位置pos开始长度为len的字符
*string& replace (size_t pos, size_t len, const string& str);
*/
int main()
{
string line = "this@ is@ a test string!";
line = line.replace(line.find("@"), 1, ""); //从第一个@位置替换第一个@为空
cout << line << endl;
return 0;
}
/*用法二:
*用str替换 迭代器起始位置 和 结束位置 的字符
*string& replace (const_iterator i1, const_iterator i2, const string& str);
*/
int main()
{
string line = "this@ is@ a test string!";
line = line.replace(line.begin(), line.begin()+6, ""); //用str替换从begin位置开始的6个字符
cout << line << endl;
return 0;
}
/*用法三:
*用substr的指定子串(给定起始位置和长度)替换从指定位置上的字符串
*string& replace (size_t pos, size_t len, cons