张传旭 2016-03-15 13:09 采纳率: 92.3%
浏览 1282
已采纳

菜鸟求教,为什么会显示找不到,感激不尽

#include
#include
#include
char *mystrstr(char *string,char *findstring )
{
if (string == NULL || findstring == NULL)
{
return NULL;
}
int flag = 1;
while (*string != '\0')
{
char *p=string;
char *px = string;
char *now = findstring;
while (*now != '\0')
{
if (*px == *now)
{
px++;
now++;
}
else
{
flag = 0;
break;
}
}

if (flag == 1)
{
return p;
}
string++;
}
if (flag == 0)
{
return NULL;
}
}
void main()
{
char str1[20] = "i love you";
char str2[20] = "love";
char *p=mystrstr(str1, str2);
if (p == NULL)
{
printf("没有找到\n");
}
else
{
printf("%c\n", *p);
}

system("pause");

}

  • 写回答

3条回答 默认 最新

  • 小灸舞 2016-03-15 13:36
    关注

    改成了如下这样:

     #include <stdio.h>
    #include <iostream>
    using namespace std;
    
    char *mystrstr(char *string,char *findstring )
    {
        if (string == NULL || findstring == NULL)
        {
            return NULL;
        }
        int flag = 1;
        while (*string != '\0')
        {
            char *p=string;
            char *px = string;
            char *now = findstring;
            while (*now != '\0')
            {
                if (*px == *now)
                {
                    px++;
                    now++;
                }
                else
                {
                    flag = 0;
                    break;
                }
    
                if(*now != '\0')
                    flag = 1;
            }
    
            if (flag == 1)
            {
                return p;
            }
            string++;
        }
        if (flag == 0)
        {
            return NULL;
        }
    }
    void main()
    {
        char str1[20] = "i love you";
        char str2[20] = "love";
        char *p=mystrstr(str1, str2);
        if (p == NULL)
        {
            printf("没有找到\n");
        }
        else
        {
            printf("%c\n", *p);
        }
        system("pause");
    }
    

    就多加了一下两句:
    if(*now != '\0')
    flag = 1;
    while (*string != '\0')否则的话即使在某个位置两个字符串都匹配上了,但是没有把flag置1,无法跳出循环,
    继续进行while (*string != '\0')里的循环,然后由于字符匹配不上,flag被置成0了

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥20 iOS绕地区网络检测
  • ¥15 python验证码滑块图像识别
  • ¥15 根据背景及设计要求撰写设计报告
  • ¥15 QT6颜色选择对话框显示不完整
  • ¥20 能提供一下思路或者代码吗
  • ¥15 用twincat控制!
  • ¥15 请问一下这个运行结果是怎么来的
  • ¥15 单通道放大电路的工作原理
  • ¥30 YOLO检测微调结果p为1
  • ¥15 DS18B20内部ADC模数转换器