我是靠谱客的博主 着急大树,最近开发中收集的这篇文章主要介绍hdoj 1020 Encoding (水题),觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

思路:创建一个结构体数组,存储子字符串的字符和长度

代码如下:

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
struct
{
	char x;
	int k;
}sub[10010];
int main(int argc, char *argv[]) {
	char a[10010];
	int n;
	int i;
	int x;
	
	scanf("%d",&n);
	while(n--)
	{
		x=0;
		scanf("%s",a);
		sub[x].x=a[0];
		sub[x].k=0;
		for(i=0;i<strlen(a);i++)
		{
			
			
			if(a[i]==sub[x].x)
			{
				sub[x].k++;
				
			}
			else
			{
				if(sub[x].k>1)
					printf("%d",sub[x].k);
				printf("%c",sub[x].x);
				x++;
				sub[x].x=a[i];
				sub[x].k=0;
				i--;
			}
			if(i==strlen(a)-1 && a[i]==sub[x].x)
			{
				if(sub[x].k>1)
					printf("%d",sub[x].k);
				printf("%c",sub[x].x);
			}
		}
		printf("n");
	}
	
	return 0;
}


最后

以上就是着急大树为你收集整理的hdoj 1020 Encoding (水题)的全部内容,希望文章能够帮你解决hdoj 1020 Encoding (水题)所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(41)

评论列表共有 0 条评论

立即
投稿
返回
顶部