xdoj 单词统计

xdoj 单词统计,第1张

xdoj 单词统计

         一开始比较懵逼,有想法不知道怎么具体实现,就一步步探索;在csdn逛了几圈只找到一个可行的算法,大佬的文章

感觉有点繁琐

就照着最初的想法终于敲出来了

暂时还没有找到更简单的算法,希望大佬多多指点

#include
#include
int main() 
{	

//初始化
	char string[100];
	gets(string);
	int len;
	len=strlen(string);
	strlwr(string);
	char word[8];
	gets(word);
//

	char temp[100];//建立临时数组来存每一个单词
	int i=0; 
	int an=0;//记录答案
	int step=0;//指针要移动的位数
	int sum=0;
	for (char *p=string;*p!='';p=p+step)//注意指针的移动,考虑每次循环后的目的
	{	

		step=0;
		for (char*s=p;*s!=' '; ++s)
		{
			if(s-string>len) break;//此处我改了半个小时才确定,记住这个位置
			temp[i]=*s;
			i++;
			step++;
		}
		temp[i]='';
		step++;
		sum+=step;
	
		//printf("#%s",temp);
	
		
	if (!(strcmp(temp,word)))
	{
		an++;
		strcpy(temp," ");//清空数组的小技巧
		i=0;
	}
	else{
		i=0;
		strcpy(temp," ");
	}

	}
//考虑一种特殊情况,从刚才那跳出来说明最后一个单词还没统计
	strcpy(temp," ");
	i=0;
	for(char*last=string+sum;*last!='';last++)
	{
		temp[i]=*last;
		i++;	
	}
	if (!(strcmp(temp,word)))
	{
		an++;
	}
	
	printf("%s %d",word,an);
	return 0;
 } 

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5657858.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存