文本压缩有很多种方法,这里我们只考虑最简单的一种:把由相同字符组成的一个连续的片段用这个字符和片段中含有这个字符的个数来表示。例如 ccccc
就用 5c
来表示。如果字符没有重复,就原样输出。例如 aba
压缩后仍然是 aba
。
解压方法就是反过来,把形如 5c
这样的表示恢复为 ccccc
。
本题需要你根据压缩或解压的要求,对给定字符串进行处理。这里我们简单地假设原始字符串是完全由英文字母和空格组成的非空字符串。
输入格式:
输入第一行给出一个字符,如果是 C
就表示下面的字符串需要被压缩;如果是 D
就表示下面的字符串需要被解压。第二行给出需要被压缩或解压的不超过 1000 个字符的字符串,以回车结尾。题目保证字符重复个数在整型范围内,且输出文件不超过 1MB。
输出格式:
根据要求压缩或解压字符串,并在一行中输出结果。
输入样例 1:
C
TTTTThhiiiis isssss a tesssst CAaaa as
输出样例 1:
5T2h4is i5s a3 te4st CA3a as
输入样例 2:
D
5T2h4is i5s a3 te4st CA3a as10Z
输出样例 2:
TTTTThhiiiis isssss a tesssst CAaaa asZZZZZZZZZZ
正常写就行,使用getline时别忘了清空缓存区的换行符,调用方法cin.ignore(),思路:压缩,比较当前字符串和下一个字符是否相等,如果相等计数器加加,如果不相等,就输出当前字符,如果字符为空,则只输出一次。解码,判断当前是连续几个字符是否是数字字符,如果是转换为数字,并输出连续字符个数。我的代码如下
#include <iostream>
#include<vector>
#include<string>
using namespace std;
int main()
{
string code,decode;
cin >> code;
string str;
string temp;
cin.ignore();
getline(cin, str);
int count = 0;
int dNum;
string strNum;
bool flagempty = false;
for (int i = 0; i <= str.size()-1; i++)
{
if (code =="C")
{
if ((str[i] == str[i + 1]))
{
count++;
temp = str[i];
}
else
{
if (temp.size()!=0)
{
count++;
cout << count << temp;
count = 0;
}
else
{
if ((str[i] == ' ')&&(!flagempty))
{
cout << str[i];
flagempty = true;
}
else
{
cout << str[i];
flagempty = false;
}
if (i == str.size() - 1)
cout << endl;
}
temp = "";
}
}
if (code == "D")
{
char ctemp = str[i];
if ((str[i] >= '0' && str[i] <= '9'))
{
strNum+=str[i];
}
else
{
if ( ( (str[i] < '0') || (str[i] > '9')) &&(strNum.size()!=0))
{
dNum = stoi(strNum);
string strtemp(dNum, ctemp);
cout << strtemp;
}
else
{
cout << str[i];
}
strNum = "";
}
}
}
}