已知一个字符串,编写函数查找出该字符串中出现最多的字符及其出现的次数。
/*输入字符串str,把str给str_sort,对str_sort中的字符排序,在str_sort中统计每个字符出现的次数并比较输出最多的*/
#include<stdio.h>
#include<string.h>
int main()
{
char str[100],str_sort[100],c;
int i,j,len,m;
printf("Please input a string:");
gets(str); //输入字符串
strcpy(str_sort,str); //把字符串str复制到str_sort中,str_sort将重新排序
len=strlen(str_sort); //字符串长度
for(i=0;i<len-1;i++) //对str_sort中的字符排序
for(j=0;j<len-i-1;j++)
if(str_sort[j]>str_sort[j+1])
{
c=str_sort[j];
str_sort[j]=str_sort[j+1];
str_sort[j+1]=c;
}
/*从str_sort第二个字符开始,
①比较字符,是不是和前一个字符相同,相同则 j 加1,不同则说明这是新的字符,j 即是前一个字符出现的次数
②比较次数,m记录最多的次数,j > m,则m更新,并用 c 记录对应的字符*/
for(i=1,j=1,m=0;i<len;i++)
if(str_sort[i]!=str_sort[i-1])
{
if(j>m)
{
m=j;
c=str_sort[i-1];
}
j=1;
}
else
j++;
printf("Most one is:%c %d\n",c,m); //输出
return 0;
}