在字符串中查找字符串
我试图编写在某个字符串中搜索字符串的函数。 例如: “qwerty” =>搜索键 “卡萨兹qertyqwerty” 程序返回 1,因为在字符串中找到了 qwerty。
我的代码功能是:
int normal(char *str, char *str2)
{
int temp=0;
while(*str)
{
while(*str2)
{
if(*str == *str2)
{
temp+=1;
}
else if(temp == strlen(str2))
{
printf("%d", temp/strlen(str2));
}
str2++;
str++;
}
}
return 0;
}
程序中的问题到底是什么(逻辑上)?
I trying to write function that searching string in some string.
exmaple:
"qwerty" => key to search
"qasazqertyqwerty"
the program return 1 because qwerty found in the string.
my code function is:
int normal(char *str, char *str2)
{
int temp=0;
while(*str)
{
while(*str2)
{
if(*str == *str2)
{
temp+=1;
}
else if(temp == strlen(str2))
{
printf("%d", temp/strlen(str2));
}
str2++;
str++;
}
}
return 0;
}
What the hell the problem in the program(logically)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
正确的答案显然是使用
strtstr
。但如果您仍然想知道为什么您的代码不起作用,那是因为您在递增的str2
上调用了strlen
。您应该首先在函数开头计算它,然后在完成比较字符后将temp
与它进行比较。The correct answer is obviously to use
strtstr
. But if you're still wondering why your code doesn't work, it is because your callingstrlen
onstr2
which you are incrementing. You should compute it first at the beginning of the function and then comparetemp
with it when you're done comparing chararcters.是的,您应该使用 strstr()。但要解释一下为什么你的函数不起作用:
Yes, you should use strstr(). But to explain why your function does not work:
这是我在某个时候编写的 strstr() 版本,它应该与 MISRA-C 兼容,除了最终的转换之外,它是为了与 strstr() 的 C 标准定义兼容。
_
前缀用于指示这些不是 string.h 中的库函数。Here is a version of strstr() I wrote at some point, it should be MISRA-C compatible, save for the final cast, which is there for compatibility with the C standard's definition of strstr(). The
_
prefix was used to indicate that these are not library functions from string.h.