05:统计单词数
一般的文本编辑器都有查找单词的功能,该功能可以快速定位特定单词在文章中的位置,有的还能统计出特定单词在文章中出现的次数。
现在,请你编程实现这一功能,具体要求是:给定一个单词,请你输出它在给定的文章中出现的次数和第一次出现的位置。注意:匹配单词时,不区分大小写,但要求完全匹配,即给定单词必须与文章中的某一独立单词在不区分大小写的情况下完全相同(参见样例1),如果给定单词仅是文章中某一单词的一部分则不算匹配(参见样例2)。
样例 #1: To to be or not to be is a question 样例 #2: to Did the Ottoman Empire lose its power at that time
样例 #1: 2 0 样例 #2: -1
#include<stdio.h>
#include<string.h>
void cmp(char ch[]);
int main()
{
char ex[20],text[1000001],c[20];
int i=0,j,s,f=0,p=0,k=0,first;
scanf("%s\n",ex);
cmp(ex);
gets(text);
s=strlen(text);
while(i<s)
{
f=i;
j=0;
memset(c,0,sizeof(c));
while(text[i]!=' ')
{
c[j]=text[i];
++i;
++j;
}
cmp(c);
if (strcmp(c,ex)==0)
{
++k;
if(p==0)
{
first=f;
p=1;
}
}
++i;
}
if(p==1) printf("%d %d",k,first);
else printf("-1");
return 0;
}
void cmp(char ch[])
{
int x=0;
while(ch[x]!='\0')
{
ch[x]=toupper(ch[x]);
x++;
}
}