gpt4 book ai didi

c++ - 在 char 数组中查找出现次数最多的字符

转载 作者:行者123 更新时间:2023-11-30 04:26:43 27 4
gpt4 key购买 nike

我正在尝试使用以下算法在此数组中找到出现次数最多的字符:

char a[]={"aaaadddddaa"};
int max=0;
int count=0;
char maxCharcter;
for(char q='a';q<='z';q++)
{
for(int i=0; i<strlen(a);i++)
{
if(a[i]==q)
count++;
}

if(count>max)
{
max=count;
maxCharcter=q;
}
}

cout<<max<<endl;
cout<<maxCharcter<<endl;

输出应该是 max=6 maxCharcter=a,但我得到了 max=11 maxCharcter=d。我做错了什么?

最佳答案

count 应该在你的第一个 for 循环中初始化

for(char q='a';q<='z';q++) {
count = 0;
//continue code here
}

关于c++ - 在 char 数组中查找出现次数最多的字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11384881/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com