我一直在实现一个算法来计算和打印C字符串中的重复字母(两次或更多次)。
示例:
如果输入字符串为:"Hello There"
输出应为:
e - 3
h - 2
l - 2
我目前的代码一直在打印我需要的内容,但不会考虑大写字母,它还会不断向我发送消息stack smashing detected (core dumped)
。所以,它没有正常工作,我不知道为什么:
#include <stdio.h>
#include <string.h>
int main()
{
char string[10];
int c = 0, count[26] = {0};
printf("Enter a string of size [10] or less:\n");
gets(string);
while (string[c] != '\0')
{
/**reading characters from 'a' to 'z' or 'A' to 'Z' only
and ignoring others */
if ((string[c] >= 'a' && string[c] <= 'z') || (string[c] >= 'A' && string[c] <= 'Z'))
{
if (string[c] >= 'a' && string[c] <= 'z')
{
count[string[c]-'a']++;
}
else if (string[c] >= 'A' && string[c] <= 'Z')
{
count[string[c]-'A']++;
}
}
c++;
}
for (c = 0; c < 26; c++)
{
/** Printing only those characters
whose count is at least 2 */
if (count[c] > 1)
printf("%c - %d \n",c+'a',count[c]);
}
return 0;
}
答案 0 :(得分:1)
"Hello There"
不适合大小为10
的字符数组。这是您不应该使用gets
的原因的好例子。
使用:
fgets(string, sizeof(string), stdin);