POJ1782 ZOJ2240 Run Length Encoding

//4_7_9:	Run Length Encoding 字符串编码程序 POJ1782 ZOJ2240
#include <iostream>
#include <cstdio>
#include <cstring>
using namespace std;
int main()
{
	int i,cnt,start;
	char str[10000];
	while(gets(str))
	{
		i = 0;
		start = 0;					//=1表示非连续串已经开始了
		while(str[i])
		{
			cnt = 1;
			while(str[i + cnt] && str[i] == str[i + cnt] && cnt < 9)	cnt ++;
			if(cnt != 1)		
			{
				if(start)
				{
					start = 0;
					printf("1");
				}
				printf("%d%c",cnt,str[i]);
			}
			else			//cnt == 1
			{
				if(!start)
				{
					start = 1;
					printf("1");
				}
				if(str[i] == '1')	printf("11");
				else				printf("%c",str[i]);
			}
			i += cnt;
		}
		if(start)	printf("1");
		printf("\n");
	}
	return 0;
}
/*测试结果:通过POJ1782 ZOJ2240检测
AAAAAAAAAA    12442334454454544555555
9A1A14 1112124121232415124154512465
bbbbdcccccddeadf12435324
4b1d15c2d1eadf1124353241
请按任意键继续. . .
*/

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值