gpt4 book ai didi

c - 查找子串中字符出现的次数

转载 作者:行者123 更新时间:2023-11-30 21:25:34 24 4
gpt4 key购买 nike

查找字符串子串中字符出现次数的最快方法是什么?

我尝试过正常扫描每个字符,但测试数据太大。

最佳答案

很简单

unsigned int countChar(const char *string, char characterOfInterest)
{
unsigned int count;

count = 0;
while ((string = strchr(string, characterOfInterest)) != NULL)
{
count += 1;
string += 1;
}
return count;
}

关于c - 查找子串中字符出现的次数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28906568/

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