在这里找不到bug ... C代码

时间:2012-11-10 23:31:06

标签: c recursion operator-precedence

在这段代码中,我尝试编写一个函数,如果两个字符串不匹配则返回0值,如果我能在str中找到一个子字符串,那么它将返回匹配字符的长度,以及wholey resambles patt。

#include....

int check(char *str, char *patt, int *b)
{   
    if (*str == *patt && *patt != 0)
        return *b * (1 + check(str+1,patt+1,&b));
    else if (*patt == 0)
        return 0;
    else{
        *b = 0;
        return 0;
    }
}

main()
{
    char s1[SIZE] = "mama";
    char s2[SIZE] = "mama";
    int b = 1;

    printf("%d\n",check(s1,s2,&b));
    b = 1;          

    system ("pause");
    return;
}

这里我应该得到输出4,但我得到-77779463。 谢谢你的帮助!

PS我使用了递归并将b参数设置为changable。

2 个答案:

答案 0 :(得分:7)

b已经是指向int的指针,因此您希望使用b而不是&b进行递归调用。

任何体面的编译器,如果启用了警告,都会提醒你注意这个错误!

答案 1 :(得分:2)

return *b * (1 + check(str+1,patt+1,&b));
                                    ^ dont pass address.

b传递给它。