使用以下签名编写函数strstr,使其成为递归函数(而不是递归的包装器)。
简而言之,strstr返回子字符串首先出现在str中的位置的索引,如果没有找到它,则返回-1。更多here
这是我的尝试:

int strstr1(char *str, char *substr){

    if (*str == 0 || *substr == 0)//basis, if any of the strings is empty, will return -1
        return -1;
    else{
        strstr1(str + 1, substr); //forward the address of str
        if (*str == *substr)    //for each level check if the first char matches, then it should match each pair
            strstr(str + 1, substr + 1);

但我被卡住了。我意识到在递归中可能需要回溯,但我不知道如何回溯,也不知道如何通过所有递归级别传递索引。。。
有什么提示或建议吗?

最佳答案

“Real”strstr()返回char*(或const char*)。在C++标准中,有2个重载。为了避免链接器问题,我将strstr()重命名为strstr1()。

#include <stdio.h>
#include <string.h>

int strmatch( const char *str, const char *substr)
{
    while ( '\0' != (*substr) && (*str == *substr) )
    {
        substr++;
        str++;
    }
    if( '\0' == *substr )
        return 0;
    else
        return -1;
}

const char * strstr1( const char *str, const char* substr)
{
    printf("strstr(%s,%s)\n", str,substr );
    if( '\0' == (*str) )
        return NULL;
    if( *str == *substr )
    {
        if( 0 == strmatch( str, substr ) )
        {
            return str; // success value or something.
        }
    }
    return strstr1( str + 1, substr );
}



int main( int argc, const char * argv[] )
{
    const char * s1 = "Hello World";
    const char * ss1 = "World";

    if( NULL != strstr1( s1, ss1 ) )
    {
        printf("%s contains %s!\n", s1, ss1 );
    }
    else
    {
        printf("%s does not contain %s!\n", s1, ss1 );
    }

    const char * s2 = "Hello Universe";
    const char * ss2 = "World";

    if( NULL != strstr1( s2, ss2 ) )
    {
        printf("%s contains %s!\n", s2, ss2 );
    }
    else
    {
        printf("%s does not contain %s!\n", s2, ss2 );
    }

    const char * s3 = "Hello World World World World";
    const char * ss3 = "World";

    const char * foo = s3;
    while( NULL != foo )
    {
        foo = strstr1( foo, ss3 );
        if( NULL != foo )
        {
            puts("another match!");
            foo = foo + strlen(ss3);
        }
        else
        {
            puts("no more matches.");
        }
    }

    return 0;
}

关于c - 递归strstr函数,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/28515541/

10-12 23:51