Warning: file_get_contents(/data/phpspider/zhask/data//catemap/4/string/5.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
尽可能快地提取C中两个相似(或不同)字符串之间的字符串_C_String_Find - Fatal编程技术网

尽可能快地提取C中两个相似(或不同)字符串之间的字符串

尽可能快地提取C中两个相似(或不同)字符串之间的字符串,c,string,find,C,String,Find,我用C语言编写了一个程序,可以找到两个相似或不同的字符串,并提取它们之间的字符串。这种类型的程序有很多用途,通常当你使用这样的程序时,你有很多信息,所以它需要快速。我想就如何使这个程序尽可能快和有效的提示 /* Compile with: gcc -Wall -O3 fast_strbetween2.c -o fast_strbetween2 Corrections and additions courtesy of: https://stackoverflow.com

我用C语言编写了一个程序,可以找到两个相似或不同的字符串,并提取它们之间的字符串。这种类型的程序有很多用途,通常当你使用这样的程序时,你有很多信息,所以它需要快速。我想就如何使这个程序尽可能快和有效的提示

/*
   Compile with:
   gcc -Wall -O3 fast_strbetween2.c -o fast_strbetween2

   Corrections and additions courtesy of:
   https://stackoverflow.com/questions/55308295/extracting-a-string-between-two-similar-or-different-strings-in-c-as-fast-as-p

*/

#include<stdio.h>  // printf
#include<stdlib.h> // malloc, free

// Strings now set to 'const'
char * fast_strbetween(const char *str, const char *str1, const char *str2)
{
    // string size will now be calculated by the characters picked up
    size_t str1pos    = 0;
    size_t str1chars;

    // Find str1
    do{

        str1chars = 0;

        // Will the do/while str1 check for '\0' suffice?
        // I haven't seen any issues yet, but not sure.
        while(str1[str1chars] == str[str1pos + str1chars]  && str1[str1chars] != '\0')
        {
            //printf("Found str1 char: %i num: %i pos: %i\n", str1[str1chars], str1chars + 1, str1pos);

            ++str1chars;
        }

        // Incrementing whilst not in conditional expression tested faster
        ++str1pos;

    /* There are two checks for "str1[str1chars] != '\0'". Trying to find
       another efficient way to do it in one. */
    }while(str[str1pos] != '\0' && str1[str1chars] != '\0');

    --str1pos;

    //For testing:
    //printf("str1pos: %i str1chars: %i\n", str1pos, str1chars);

    // exit if no chars were found or if didn't reach end of str1
    if(!str1chars || str1[str1chars] != '\0')
    {
        //printf("Bailing from str1 result\n");
        return '\0';
    }

    /* Got rid of the '+1' code which didn't allow for '' returns.
       I agree with your logic of <tag></tag> returning ''. */
    size_t str2pos = str1pos + str1chars;
    size_t str2chars;

    //printf("Starting pos for str2: %i\n", str1pos + str1chars);

    // Find str2
    do{

        str2chars = 0;

        while(str2[str2chars] == str[str2pos + str2chars] && str2[str2chars] != '\0')
        {
            //printf("Found str2 char: %i num: %i pos: %i \n", str2[str2chars], str2chars + 1, str2pos);
            ++str2chars;
        }

        ++str2pos;

    }while(str[str2pos] != '\0' && str2[str2chars] != '\0');

    --str2pos;

    //For testing:
    //printf("str2pos: %i str2chars: %i\n", str2pos, str2chars);

    if(!str2chars || str2[str2chars] != '\0')
    {
        //printf("Bailing from str2 result!\n");
        return '\0';
    }

    /* Trying to allocate strbetween with malloc. Is this correct? */
    char * strbetween = malloc(2);

    // Check if malloc succeeded:
    if (strbetween == '\0') return '\0';

    size_t tmp = 0;

    // Grab and store the string between!
    for(size_t i = str1pos + str1chars; i < str2pos; ++i)
    {
        strbetween[tmp] = str[i];
        ++tmp;
    }

    return strbetween;
}

int main() {

    char str[30]  = { "abaabbbaaaabbabbbaaabbb" };
    char str1[10] = { "aaa" };
    char str2[10] = { "bbb" };

    printf("Searching \'%s\' for \'%s\' and \'%s\'\n", str, str1, str2);
    printf("           0123456789\n\n"); // Easily see the elements
    printf("The word between is: \'%s\'\n", fast_strbetween(str, str1, str2));

    for(int i = 10000000; --i;)
        free(fast_strbetween(str, str1, str2));

    return 0;
}
我正在寻找一些建议,这些建议不会让我求助于像regex这样的大型库

/*
   Compile with:
   gcc -Wall -O3 fast_strbetween2.c -o fast_strbetween2

   Corrections and additions courtesy of:
   https://stackoverflow.com/questions/55308295/extracting-a-string-between-two-similar-or-different-strings-in-c-as-fast-as-p

*/

#include<stdio.h>  // printf
#include<stdlib.h> // malloc, free

// Strings now set to 'const'
char * fast_strbetween(const char *str, const char *str1, const char *str2)
{
    // string size will now be calculated by the characters picked up
    size_t str1pos    = 0;
    size_t str1chars;

    // Find str1
    do{

        str1chars = 0;

        // Will the do/while str1 check for '\0' suffice?
        // I haven't seen any issues yet, but not sure.
        while(str1[str1chars] == str[str1pos + str1chars]  && str1[str1chars] != '\0')
        {
            //printf("Found str1 char: %i num: %i pos: %i\n", str1[str1chars], str1chars + 1, str1pos);

            ++str1chars;
        }

        // Incrementing whilst not in conditional expression tested faster
        ++str1pos;

    /* There are two checks for "str1[str1chars] != '\0'". Trying to find
       another efficient way to do it in one. */
    }while(str[str1pos] != '\0' && str1[str1chars] != '\0');

    --str1pos;

    //For testing:
    //printf("str1pos: %i str1chars: %i\n", str1pos, str1chars);

    // exit if no chars were found or if didn't reach end of str1
    if(!str1chars || str1[str1chars] != '\0')
    {
        //printf("Bailing from str1 result\n");
        return '\0';
    }

    /* Got rid of the '+1' code which didn't allow for '' returns.
       I agree with your logic of <tag></tag> returning ''. */
    size_t str2pos = str1pos + str1chars;
    size_t str2chars;

    //printf("Starting pos for str2: %i\n", str1pos + str1chars);

    // Find str2
    do{

        str2chars = 0;

        while(str2[str2chars] == str[str2pos + str2chars] && str2[str2chars] != '\0')
        {
            //printf("Found str2 char: %i num: %i pos: %i \n", str2[str2chars], str2chars + 1, str2pos);
            ++str2chars;
        }

        ++str2pos;

    }while(str[str2pos] != '\0' && str2[str2chars] != '\0');

    --str2pos;

    //For testing:
    //printf("str2pos: %i str2chars: %i\n", str2pos, str2chars);

    if(!str2chars || str2[str2chars] != '\0')
    {
        //printf("Bailing from str2 result!\n");
        return '\0';
    }

    /* Trying to allocate strbetween with malloc. Is this correct? */
    char * strbetween = malloc(2);

    // Check if malloc succeeded:
    if (strbetween == '\0') return '\0';

    size_t tmp = 0;

    // Grab and store the string between!
    for(size_t i = str1pos + str1chars; i < str2pos; ++i)
    {
        strbetween[tmp] = str[i];
        ++tmp;
    }

    return strbetween;
}

int main() {

    char str[30]  = { "abaabbbaaaabbabbbaaabbb" };
    char str1[10] = { "aaa" };
    char str2[10] = { "bbb" };

    printf("Searching \'%s\' for \'%s\' and \'%s\'\n", str, str1, str2);
    printf("           0123456789\n\n"); // Easily see the elements
    printf("The word between is: \'%s\'\n", fast_strbetween(str, str1, str2));

    for(int i = 10000000; --i;)
        free(fast_strbetween(str, str1, str2));

    return 0;
}
守则必须:

/*
   Compile with:
   gcc -Wall -O3 fast_strbetween2.c -o fast_strbetween2

   Corrections and additions courtesy of:
   https://stackoverflow.com/questions/55308295/extracting-a-string-between-two-similar-or-different-strings-in-c-as-fast-as-p

*/

#include<stdio.h>  // printf
#include<stdlib.h> // malloc, free

// Strings now set to 'const'
char * fast_strbetween(const char *str, const char *str1, const char *str2)
{
    // string size will now be calculated by the characters picked up
    size_t str1pos    = 0;
    size_t str1chars;

    // Find str1
    do{

        str1chars = 0;

        // Will the do/while str1 check for '\0' suffice?
        // I haven't seen any issues yet, but not sure.
        while(str1[str1chars] == str[str1pos + str1chars]  && str1[str1chars] != '\0')
        {
            //printf("Found str1 char: %i num: %i pos: %i\n", str1[str1chars], str1chars + 1, str1pos);

            ++str1chars;
        }

        // Incrementing whilst not in conditional expression tested faster
        ++str1pos;

    /* There are two checks for "str1[str1chars] != '\0'". Trying to find
       another efficient way to do it in one. */
    }while(str[str1pos] != '\0' && str1[str1chars] != '\0');

    --str1pos;

    //For testing:
    //printf("str1pos: %i str1chars: %i\n", str1pos, str1chars);

    // exit if no chars were found or if didn't reach end of str1
    if(!str1chars || str1[str1chars] != '\0')
    {
        //printf("Bailing from str1 result\n");
        return '\0';
    }

    /* Got rid of the '+1' code which didn't allow for '' returns.
       I agree with your logic of <tag></tag> returning ''. */
    size_t str2pos = str1pos + str1chars;
    size_t str2chars;

    //printf("Starting pos for str2: %i\n", str1pos + str1chars);

    // Find str2
    do{

        str2chars = 0;

        while(str2[str2chars] == str[str2pos + str2chars] && str2[str2chars] != '\0')
        {
            //printf("Found str2 char: %i num: %i pos: %i \n", str2[str2chars], str2chars + 1, str2pos);
            ++str2chars;
        }

        ++str2pos;

    }while(str[str2pos] != '\0' && str2[str2chars] != '\0');

    --str2pos;

    //For testing:
    //printf("str2pos: %i str2chars: %i\n", str2pos, str2chars);

    if(!str2chars || str2[str2chars] != '\0')
    {
        //printf("Bailing from str2 result!\n");
        return '\0';
    }

    /* Trying to allocate strbetween with malloc. Is this correct? */
    char * strbetween = malloc(2);

    // Check if malloc succeeded:
    if (strbetween == '\0') return '\0';

    size_t tmp = 0;

    // Grab and store the string between!
    for(size_t i = str1pos + str1chars; i < str2pos; ++i)
    {
        strbetween[tmp] = str[i];
        ++tmp;
    }

    return strbetween;
}

int main() {

    char str[30]  = { "abaabbbaaaabbabbbaaabbb" };
    char str1[10] = { "aaa" };
    char str2[10] = { "bbb" };

    printf("Searching \'%s\' for \'%s\' and \'%s\'\n", str, str1, str2);
    printf("           0123456789\n\n"); // Easily see the elements
    printf("The word between is: \'%s\'\n", fast_strbetween(str, str1, str2));

    for(int i = 10000000; --i;)
        free(fast_strbetween(str, str1, str2));

    return 0;
}
能够在两个相似或不同的字符串之间提取字符串 查找string1的第一个匹配项 查找string1之后出现的string2的第一个匹配项 提取string1和string2之间的字符串 能够使用任意大小的字符串参数 对于人为错误要万无一失,并在出现这种情况时返回NULL。例如,string1超过了整个文本字符串长度。不要在元素错误中崩溃,但优雅地返回NULL 注重速度和效率 下面是我的代码。我对C语言很陌生,来自C++,所以我可能会使用一些建议,特别是关于“MalOC”命令的有效使用:

/*
   Compile with:
   gcc -Wall -O3 fast_strbetween2.c -o fast_strbetween2

   Corrections and additions courtesy of:
   https://stackoverflow.com/questions/55308295/extracting-a-string-between-two-similar-or-different-strings-in-c-as-fast-as-p

*/

#include<stdio.h>  // printf
#include<stdlib.h> // malloc, free

// Strings now set to 'const'
char * fast_strbetween(const char *str, const char *str1, const char *str2)
{
    // string size will now be calculated by the characters picked up
    size_t str1pos    = 0;
    size_t str1chars;

    // Find str1
    do{

        str1chars = 0;

        // Will the do/while str1 check for '\0' suffice?
        // I haven't seen any issues yet, but not sure.
        while(str1[str1chars] == str[str1pos + str1chars]  && str1[str1chars] != '\0')
        {
            //printf("Found str1 char: %i num: %i pos: %i\n", str1[str1chars], str1chars + 1, str1pos);

            ++str1chars;
        }

        // Incrementing whilst not in conditional expression tested faster
        ++str1pos;

    /* There are two checks for "str1[str1chars] != '\0'". Trying to find
       another efficient way to do it in one. */
    }while(str[str1pos] != '\0' && str1[str1chars] != '\0');

    --str1pos;

    //For testing:
    //printf("str1pos: %i str1chars: %i\n", str1pos, str1chars);

    // exit if no chars were found or if didn't reach end of str1
    if(!str1chars || str1[str1chars] != '\0')
    {
        //printf("Bailing from str1 result\n");
        return '\0';
    }

    /* Got rid of the '+1' code which didn't allow for '' returns.
       I agree with your logic of <tag></tag> returning ''. */
    size_t str2pos = str1pos + str1chars;
    size_t str2chars;

    //printf("Starting pos for str2: %i\n", str1pos + str1chars);

    // Find str2
    do{

        str2chars = 0;

        while(str2[str2chars] == str[str2pos + str2chars] && str2[str2chars] != '\0')
        {
            //printf("Found str2 char: %i num: %i pos: %i \n", str2[str2chars], str2chars + 1, str2pos);
            ++str2chars;
        }

        ++str2pos;

    }while(str[str2pos] != '\0' && str2[str2chars] != '\0');

    --str2pos;

    //For testing:
    //printf("str2pos: %i str2chars: %i\n", str2pos, str2chars);

    if(!str2chars || str2[str2chars] != '\0')
    {
        //printf("Bailing from str2 result!\n");
        return '\0';
    }

    /* Trying to allocate strbetween with malloc. Is this correct? */
    char * strbetween = malloc(2);

    // Check if malloc succeeded:
    if (strbetween == '\0') return '\0';

    size_t tmp = 0;

    // Grab and store the string between!
    for(size_t i = str1pos + str1chars; i < str2pos; ++i)
    {
        strbetween[tmp] = str[i];
        ++tmp;
    }

    return strbetween;
}

int main() {

    char str[30]  = { "abaabbbaaaabbabbbaaabbb" };
    char str1[10] = { "aaa" };
    char str2[10] = { "bbb" };

    printf("Searching \'%s\' for \'%s\' and \'%s\'\n", str, str1, str2);
    printf("           0123456789\n\n"); // Easily see the elements
    printf("The word between is: \'%s\'\n", fast_strbetween(str, str1, str2));

    for(int i = 10000000; --i;)
        free(fast_strbetween(str, str1, str2));

    return 0;
}
fast\u strbtween.c:

/*
   Compile with:
   gcc -Wall -O3 fast_strbetween2.c -o fast_strbetween2

   Corrections and additions courtesy of:
   https://stackoverflow.com/questions/55308295/extracting-a-string-between-two-similar-or-different-strings-in-c-as-fast-as-p

*/

#include<stdio.h>  // printf
#include<stdlib.h> // malloc, free

// Strings now set to 'const'
char * fast_strbetween(const char *str, const char *str1, const char *str2)
{
    // string size will now be calculated by the characters picked up
    size_t str1pos    = 0;
    size_t str1chars;

    // Find str1
    do{

        str1chars = 0;

        // Will the do/while str1 check for '\0' suffice?
        // I haven't seen any issues yet, but not sure.
        while(str1[str1chars] == str[str1pos + str1chars]  && str1[str1chars] != '\0')
        {
            //printf("Found str1 char: %i num: %i pos: %i\n", str1[str1chars], str1chars + 1, str1pos);

            ++str1chars;
        }

        // Incrementing whilst not in conditional expression tested faster
        ++str1pos;

    /* There are two checks for "str1[str1chars] != '\0'". Trying to find
       another efficient way to do it in one. */
    }while(str[str1pos] != '\0' && str1[str1chars] != '\0');

    --str1pos;

    //For testing:
    //printf("str1pos: %i str1chars: %i\n", str1pos, str1chars);

    // exit if no chars were found or if didn't reach end of str1
    if(!str1chars || str1[str1chars] != '\0')
    {
        //printf("Bailing from str1 result\n");
        return '\0';
    }

    /* Got rid of the '+1' code which didn't allow for '' returns.
       I agree with your logic of <tag></tag> returning ''. */
    size_t str2pos = str1pos + str1chars;
    size_t str2chars;

    //printf("Starting pos for str2: %i\n", str1pos + str1chars);

    // Find str2
    do{

        str2chars = 0;

        while(str2[str2chars] == str[str2pos + str2chars] && str2[str2chars] != '\0')
        {
            //printf("Found str2 char: %i num: %i pos: %i \n", str2[str2chars], str2chars + 1, str2pos);
            ++str2chars;
        }

        ++str2pos;

    }while(str[str2pos] != '\0' && str2[str2chars] != '\0');

    --str2pos;

    //For testing:
    //printf("str2pos: %i str2chars: %i\n", str2pos, str2chars);

    if(!str2chars || str2[str2chars] != '\0')
    {
        //printf("Bailing from str2 result!\n");
        return '\0';
    }

    /* Trying to allocate strbetween with malloc. Is this correct? */
    char * strbetween = malloc(2);

    // Check if malloc succeeded:
    if (strbetween == '\0') return '\0';

    size_t tmp = 0;

    // Grab and store the string between!
    for(size_t i = str1pos + str1chars; i < str2pos; ++i)
    {
        strbetween[tmp] = str[i];
        ++tmp;
    }

    return strbetween;
}

int main() {

    char str[30]  = { "abaabbbaaaabbabbbaaabbb" };
    char str1[10] = { "aaa" };
    char str2[10] = { "bbb" };

    printf("Searching \'%s\' for \'%s\' and \'%s\'\n", str, str1, str2);
    printf("           0123456789\n\n"); // Easily see the elements
    printf("The word between is: \'%s\'\n", fast_strbetween(str, str1, str2));

    for(int i = 10000000; --i;)
        free(fast_strbetween(str, str1, str2));

    return 0;
}
根据Linux的“top”命令,进程使用了99.3-100%的CPU。 运行时使用的内存:3.7Mb 可执行文件大小:8336字节

/*
   Compile with:
   gcc -Wall -O3 fast_strbetween2.c -o fast_strbetween2

   Corrections and additions courtesy of:
   https://stackoverflow.com/questions/55308295/extracting-a-string-between-two-similar-or-different-strings-in-c-as-fast-as-p

*/

#include<stdio.h>  // printf
#include<stdlib.h> // malloc, free

// Strings now set to 'const'
char * fast_strbetween(const char *str, const char *str1, const char *str2)
{
    // string size will now be calculated by the characters picked up
    size_t str1pos    = 0;
    size_t str1chars;

    // Find str1
    do{

        str1chars = 0;

        // Will the do/while str1 check for '\0' suffice?
        // I haven't seen any issues yet, but not sure.
        while(str1[str1chars] == str[str1pos + str1chars]  && str1[str1chars] != '\0')
        {
            //printf("Found str1 char: %i num: %i pos: %i\n", str1[str1chars], str1chars + 1, str1pos);

            ++str1chars;
        }

        // Incrementing whilst not in conditional expression tested faster
        ++str1pos;

    /* There are two checks for "str1[str1chars] != '\0'". Trying to find
       another efficient way to do it in one. */
    }while(str[str1pos] != '\0' && str1[str1chars] != '\0');

    --str1pos;

    //For testing:
    //printf("str1pos: %i str1chars: %i\n", str1pos, str1chars);

    // exit if no chars were found or if didn't reach end of str1
    if(!str1chars || str1[str1chars] != '\0')
    {
        //printf("Bailing from str1 result\n");
        return '\0';
    }

    /* Got rid of the '+1' code which didn't allow for '' returns.
       I agree with your logic of <tag></tag> returning ''. */
    size_t str2pos = str1pos + str1chars;
    size_t str2chars;

    //printf("Starting pos for str2: %i\n", str1pos + str1chars);

    // Find str2
    do{

        str2chars = 0;

        while(str2[str2chars] == str[str2pos + str2chars] && str2[str2chars] != '\0')
        {
            //printf("Found str2 char: %i num: %i pos: %i \n", str2[str2chars], str2chars + 1, str2pos);
            ++str2chars;
        }

        ++str2pos;

    }while(str[str2pos] != '\0' && str2[str2chars] != '\0');

    --str2pos;

    //For testing:
    //printf("str2pos: %i str2chars: %i\n", str2pos, str2chars);

    if(!str2chars || str2[str2chars] != '\0')
    {
        //printf("Bailing from str2 result!\n");
        return '\0';
    }

    /* Trying to allocate strbetween with malloc. Is this correct? */
    char * strbetween = malloc(2);

    // Check if malloc succeeded:
    if (strbetween == '\0') return '\0';

    size_t tmp = 0;

    // Grab and store the string between!
    for(size_t i = str1pos + str1chars; i < str2pos; ++i)
    {
        strbetween[tmp] = str[i];
        ++tmp;
    }

    return strbetween;
}

int main() {

    char str[30]  = { "abaabbbaaaabbabbbaaabbb" };
    char str1[10] = { "aaa" };
    char str2[10] = { "bbb" };

    printf("Searching \'%s\' for \'%s\' and \'%s\'\n", str, str1, str2);
    printf("           0123456789\n\n"); // Easily see the elements
    printf("The word between is: \'%s\'\n", fast_strbetween(str, str1, str2));

    for(int i = 10000000; --i;)
        free(fast_strbetween(str, str1, str2));

    return 0;
}
在树莓皮3B+4 x 1.4Ghz的6臂上运行

/*
   Compile with:
   gcc -Wall -O3 fast_strbetween2.c -o fast_strbetween2

   Corrections and additions courtesy of:
   https://stackoverflow.com/questions/55308295/extracting-a-string-between-two-similar-or-different-strings-in-c-as-fast-as-p

*/

#include<stdio.h>  // printf
#include<stdlib.h> // malloc, free

// Strings now set to 'const'
char * fast_strbetween(const char *str, const char *str1, const char *str2)
{
    // string size will now be calculated by the characters picked up
    size_t str1pos    = 0;
    size_t str1chars;

    // Find str1
    do{

        str1chars = 0;

        // Will the do/while str1 check for '\0' suffice?
        // I haven't seen any issues yet, but not sure.
        while(str1[str1chars] == str[str1pos + str1chars]  && str1[str1chars] != '\0')
        {
            //printf("Found str1 char: %i num: %i pos: %i\n", str1[str1chars], str1chars + 1, str1pos);

            ++str1chars;
        }

        // Incrementing whilst not in conditional expression tested faster
        ++str1pos;

    /* There are two checks for "str1[str1chars] != '\0'". Trying to find
       another efficient way to do it in one. */
    }while(str[str1pos] != '\0' && str1[str1chars] != '\0');

    --str1pos;

    //For testing:
    //printf("str1pos: %i str1chars: %i\n", str1pos, str1chars);

    // exit if no chars were found or if didn't reach end of str1
    if(!str1chars || str1[str1chars] != '\0')
    {
        //printf("Bailing from str1 result\n");
        return '\0';
    }

    /* Got rid of the '+1' code which didn't allow for '' returns.
       I agree with your logic of <tag></tag> returning ''. */
    size_t str2pos = str1pos + str1chars;
    size_t str2chars;

    //printf("Starting pos for str2: %i\n", str1pos + str1chars);

    // Find str2
    do{

        str2chars = 0;

        while(str2[str2chars] == str[str2pos + str2chars] && str2[str2chars] != '\0')
        {
            //printf("Found str2 char: %i num: %i pos: %i \n", str2[str2chars], str2chars + 1, str2pos);
            ++str2chars;
        }

        ++str2pos;

    }while(str[str2pos] != '\0' && str2[str2chars] != '\0');

    --str2pos;

    //For testing:
    //printf("str2pos: %i str2chars: %i\n", str2pos, str2chars);

    if(!str2chars || str2[str2chars] != '\0')
    {
        //printf("Bailing from str2 result!\n");
        return '\0';
    }

    /* Trying to allocate strbetween with malloc. Is this correct? */
    char * strbetween = malloc(2);

    // Check if malloc succeeded:
    if (strbetween == '\0') return '\0';

    size_t tmp = 0;

    // Grab and store the string between!
    for(size_t i = str1pos + str1chars; i < str2pos; ++i)
    {
        strbetween[tmp] = str[i];
        ++tmp;
    }

    return strbetween;
}

int main() {

    char str[30]  = { "abaabbbaaaabbabbbaaabbb" };
    char str1[10] = { "aaa" };
    char str2[10] = { "bbb" };

    printf("Searching \'%s\' for \'%s\' and \'%s\'\n", str, str1, str2);
    printf("           0123456789\n\n"); // Easily see the elements
    printf("The word between is: \'%s\'\n", fast_strbetween(str, str1, str2));

    for(int i = 10000000; --i;)
        free(fast_strbetween(str, str1, str2));

    return 0;
}
如果有人想提供代码、提示、指针。。。我将不胜感激。我还将实施这些更改,并为您的问题给出一个定时结果

/*
   Compile with:
   gcc -Wall -O3 fast_strbetween2.c -o fast_strbetween2

   Corrections and additions courtesy of:
   https://stackoverflow.com/questions/55308295/extracting-a-string-between-two-similar-or-different-strings-in-c-as-fast-as-p

*/

#include<stdio.h>  // printf
#include<stdlib.h> // malloc, free

// Strings now set to 'const'
char * fast_strbetween(const char *str, const char *str1, const char *str2)
{
    // string size will now be calculated by the characters picked up
    size_t str1pos    = 0;
    size_t str1chars;

    // Find str1
    do{

        str1chars = 0;

        // Will the do/while str1 check for '\0' suffice?
        // I haven't seen any issues yet, but not sure.
        while(str1[str1chars] == str[str1pos + str1chars]  && str1[str1chars] != '\0')
        {
            //printf("Found str1 char: %i num: %i pos: %i\n", str1[str1chars], str1chars + 1, str1pos);

            ++str1chars;
        }

        // Incrementing whilst not in conditional expression tested faster
        ++str1pos;

    /* There are two checks for "str1[str1chars] != '\0'". Trying to find
       another efficient way to do it in one. */
    }while(str[str1pos] != '\0' && str1[str1chars] != '\0');

    --str1pos;

    //For testing:
    //printf("str1pos: %i str1chars: %i\n", str1pos, str1chars);

    // exit if no chars were found or if didn't reach end of str1
    if(!str1chars || str1[str1chars] != '\0')
    {
        //printf("Bailing from str1 result\n");
        return '\0';
    }

    /* Got rid of the '+1' code which didn't allow for '' returns.
       I agree with your logic of <tag></tag> returning ''. */
    size_t str2pos = str1pos + str1chars;
    size_t str2chars;

    //printf("Starting pos for str2: %i\n", str1pos + str1chars);

    // Find str2
    do{

        str2chars = 0;

        while(str2[str2chars] == str[str2pos + str2chars] && str2[str2chars] != '\0')
        {
            //printf("Found str2 char: %i num: %i pos: %i \n", str2[str2chars], str2chars + 1, str2pos);
            ++str2chars;
        }

        ++str2pos;

    }while(str[str2pos] != '\0' && str2[str2chars] != '\0');

    --str2pos;

    //For testing:
    //printf("str2pos: %i str2chars: %i\n", str2pos, str2chars);

    if(!str2chars || str2[str2chars] != '\0')
    {
        //printf("Bailing from str2 result!\n");
        return '\0';
    }

    /* Trying to allocate strbetween with malloc. Is this correct? */
    char * strbetween = malloc(2);

    // Check if malloc succeeded:
    if (strbetween == '\0') return '\0';

    size_t tmp = 0;

    // Grab and store the string between!
    for(size_t i = str1pos + str1chars; i < str2pos; ++i)
    {
        strbetween[tmp] = str[i];
        ++tmp;
    }

    return strbetween;
}

int main() {

    char str[30]  = { "abaabbbaaaabbabbbaaabbb" };
    char str1[10] = { "aaa" };
    char str2[10] = { "bbb" };

    printf("Searching \'%s\' for \'%s\' and \'%s\'\n", str, str1, str2);
    printf("           0123456789\n\n"); // Easily see the elements
    printf("The word between is: \'%s\'\n", fast_strbetween(str, str1, str2));

    for(int i = 10000000; --i;)
        free(fast_strbetween(str, str1, str2));

    return 0;
}
哦,我学到的一件事就是总是去分配malloc;在发布这篇文章之前,我用额外的循环运行了上面的代码。我的电脑内存满了,电脑冻结了。幸运的是,Stack做了一个备份草稿!吸取教训

/*
   Compile with:
   gcc -Wall -O3 fast_strbetween2.c -o fast_strbetween2

   Corrections and additions courtesy of:
   https://stackoverflow.com/questions/55308295/extracting-a-string-between-two-similar-or-different-strings-in-c-as-fast-as-p

*/

#include<stdio.h>  // printf
#include<stdlib.h> // malloc, free

// Strings now set to 'const'
char * fast_strbetween(const char *str, const char *str1, const char *str2)
{
    // string size will now be calculated by the characters picked up
    size_t str1pos    = 0;
    size_t str1chars;

    // Find str1
    do{

        str1chars = 0;

        // Will the do/while str1 check for '\0' suffice?
        // I haven't seen any issues yet, but not sure.
        while(str1[str1chars] == str[str1pos + str1chars]  && str1[str1chars] != '\0')
        {
            //printf("Found str1 char: %i num: %i pos: %i\n", str1[str1chars], str1chars + 1, str1pos);

            ++str1chars;
        }

        // Incrementing whilst not in conditional expression tested faster
        ++str1pos;

    /* There are two checks for "str1[str1chars] != '\0'". Trying to find
       another efficient way to do it in one. */
    }while(str[str1pos] != '\0' && str1[str1chars] != '\0');

    --str1pos;

    //For testing:
    //printf("str1pos: %i str1chars: %i\n", str1pos, str1chars);

    // exit if no chars were found or if didn't reach end of str1
    if(!str1chars || str1[str1chars] != '\0')
    {
        //printf("Bailing from str1 result\n");
        return '\0';
    }

    /* Got rid of the '+1' code which didn't allow for '' returns.
       I agree with your logic of <tag></tag> returning ''. */
    size_t str2pos = str1pos + str1chars;
    size_t str2chars;

    //printf("Starting pos for str2: %i\n", str1pos + str1chars);

    // Find str2
    do{

        str2chars = 0;

        while(str2[str2chars] == str[str2pos + str2chars] && str2[str2chars] != '\0')
        {
            //printf("Found str2 char: %i num: %i pos: %i \n", str2[str2chars], str2chars + 1, str2pos);
            ++str2chars;
        }

        ++str2pos;

    }while(str[str2pos] != '\0' && str2[str2chars] != '\0');

    --str2pos;

    //For testing:
    //printf("str2pos: %i str2chars: %i\n", str2pos, str2chars);

    if(!str2chars || str2[str2chars] != '\0')
    {
        //printf("Bailing from str2 result!\n");
        return '\0';
    }

    /* Trying to allocate strbetween with malloc. Is this correct? */
    char * strbetween = malloc(2);

    // Check if malloc succeeded:
    if (strbetween == '\0') return '\0';

    size_t tmp = 0;

    // Grab and store the string between!
    for(size_t i = str1pos + str1chars; i < str2pos; ++i)
    {
        strbetween[tmp] = str[i];
        ++tmp;
    }

    return strbetween;
}

int main() {

    char str[30]  = { "abaabbbaaaabbabbbaaabbb" };
    char str1[10] = { "aaa" };
    char str2[10] = { "bbb" };

    printf("Searching \'%s\' for \'%s\' and \'%s\'\n", str, str1, str2);
    printf("           0123456789\n\n"); // Easily see the elements
    printf("The word between is: \'%s\'\n", fast_strbetween(str, str1, str2));

    for(int i = 10000000; --i;)
        free(fast_strbetween(str, str1, str2));

    return 0;
}
*编辑*

/*
   Compile with:
   gcc -Wall -O3 fast_strbetween2.c -o fast_strbetween2

   Corrections and additions courtesy of:
   https://stackoverflow.com/questions/55308295/extracting-a-string-between-two-similar-or-different-strings-in-c-as-fast-as-p

*/

#include<stdio.h>  // printf
#include<stdlib.h> // malloc, free

// Strings now set to 'const'
char * fast_strbetween(const char *str, const char *str1, const char *str2)
{
    // string size will now be calculated by the characters picked up
    size_t str1pos    = 0;
    size_t str1chars;

    // Find str1
    do{

        str1chars = 0;

        // Will the do/while str1 check for '\0' suffice?
        // I haven't seen any issues yet, but not sure.
        while(str1[str1chars] == str[str1pos + str1chars]  && str1[str1chars] != '\0')
        {
            //printf("Found str1 char: %i num: %i pos: %i\n", str1[str1chars], str1chars + 1, str1pos);

            ++str1chars;
        }

        // Incrementing whilst not in conditional expression tested faster
        ++str1pos;

    /* There are two checks for "str1[str1chars] != '\0'". Trying to find
       another efficient way to do it in one. */
    }while(str[str1pos] != '\0' && str1[str1chars] != '\0');

    --str1pos;

    //For testing:
    //printf("str1pos: %i str1chars: %i\n", str1pos, str1chars);

    // exit if no chars were found or if didn't reach end of str1
    if(!str1chars || str1[str1chars] != '\0')
    {
        //printf("Bailing from str1 result\n");
        return '\0';
    }

    /* Got rid of the '+1' code which didn't allow for '' returns.
       I agree with your logic of <tag></tag> returning ''. */
    size_t str2pos = str1pos + str1chars;
    size_t str2chars;

    //printf("Starting pos for str2: %i\n", str1pos + str1chars);

    // Find str2
    do{

        str2chars = 0;

        while(str2[str2chars] == str[str2pos + str2chars] && str2[str2chars] != '\0')
        {
            //printf("Found str2 char: %i num: %i pos: %i \n", str2[str2chars], str2chars + 1, str2pos);
            ++str2chars;
        }

        ++str2pos;

    }while(str[str2pos] != '\0' && str2[str2chars] != '\0');

    --str2pos;

    //For testing:
    //printf("str2pos: %i str2chars: %i\n", str2pos, str2chars);

    if(!str2chars || str2[str2chars] != '\0')
    {
        //printf("Bailing from str2 result!\n");
        return '\0';
    }

    /* Trying to allocate strbetween with malloc. Is this correct? */
    char * strbetween = malloc(2);

    // Check if malloc succeeded:
    if (strbetween == '\0') return '\0';

    size_t tmp = 0;

    // Grab and store the string between!
    for(size_t i = str1pos + str1chars; i < str2pos; ++i)
    {
        strbetween[tmp] = str[i];
        ++tmp;
    }

    return strbetween;
}

int main() {

    char str[30]  = { "abaabbbaaaabbabbbaaabbb" };
    char str1[10] = { "aaa" };
    char str2[10] = { "bbb" };

    printf("Searching \'%s\' for \'%s\' and \'%s\'\n", str, str1, str2);
    printf("           0123456789\n\n"); // Easily see the elements
    printf("The word between is: \'%s\'\n", fast_strbetween(str, str1, str2));

    for(int i = 10000000; --i;)
        free(fast_strbetween(str, str1, str2));

    return 0;
}
下面是我尽可能使用chqrlie的建议修改的代码。增加了对字符串结尾的额外检查,测试的短语花费了大约一秒钟的时间,但如果找不到第一个字符串,现在可以快速跳转。希望使用null或不合逻辑的字符串不会导致错误。代码中有很多注释,可以更好地理解它们。如果我遗漏了什么或做了什么不正确的事情,请告诉我;这不是故意的

/*
   Compile with:
   gcc -Wall -O3 fast_strbetween2.c -o fast_strbetween2

   Corrections and additions courtesy of:
   https://stackoverflow.com/questions/55308295/extracting-a-string-between-two-similar-or-different-strings-in-c-as-fast-as-p

*/

#include<stdio.h>  // printf
#include<stdlib.h> // malloc, free

// Strings now set to 'const'
char * fast_strbetween(const char *str, const char *str1, const char *str2)
{
    // string size will now be calculated by the characters picked up
    size_t str1pos    = 0;
    size_t str1chars;

    // Find str1
    do{

        str1chars = 0;

        // Will the do/while str1 check for '\0' suffice?
        // I haven't seen any issues yet, but not sure.
        while(str1[str1chars] == str[str1pos + str1chars]  && str1[str1chars] != '\0')
        {
            //printf("Found str1 char: %i num: %i pos: %i\n", str1[str1chars], str1chars + 1, str1pos);

            ++str1chars;
        }

        // Incrementing whilst not in conditional expression tested faster
        ++str1pos;

    /* There are two checks for "str1[str1chars] != '\0'". Trying to find
       another efficient way to do it in one. */
    }while(str[str1pos] != '\0' && str1[str1chars] != '\0');

    --str1pos;

    //For testing:
    //printf("str1pos: %i str1chars: %i\n", str1pos, str1chars);

    // exit if no chars were found or if didn't reach end of str1
    if(!str1chars || str1[str1chars] != '\0')
    {
        //printf("Bailing from str1 result\n");
        return '\0';
    }

    /* Got rid of the '+1' code which didn't allow for '' returns.
       I agree with your logic of <tag></tag> returning ''. */
    size_t str2pos = str1pos + str1chars;
    size_t str2chars;

    //printf("Starting pos for str2: %i\n", str1pos + str1chars);

    // Find str2
    do{

        str2chars = 0;

        while(str2[str2chars] == str[str2pos + str2chars] && str2[str2chars] != '\0')
        {
            //printf("Found str2 char: %i num: %i pos: %i \n", str2[str2chars], str2chars + 1, str2pos);
            ++str2chars;
        }

        ++str2pos;

    }while(str[str2pos] != '\0' && str2[str2chars] != '\0');

    --str2pos;

    //For testing:
    //printf("str2pos: %i str2chars: %i\n", str2pos, str2chars);

    if(!str2chars || str2[str2chars] != '\0')
    {
        //printf("Bailing from str2 result!\n");
        return '\0';
    }

    /* Trying to allocate strbetween with malloc. Is this correct? */
    char * strbetween = malloc(2);

    // Check if malloc succeeded:
    if (strbetween == '\0') return '\0';

    size_t tmp = 0;

    // Grab and store the string between!
    for(size_t i = str1pos + str1chars; i < str2pos; ++i)
    {
        strbetween[tmp] = str[i];
        ++tmp;
    }

    return strbetween;
}

int main() {

    char str[30]  = { "abaabbbaaaabbabbbaaabbb" };
    char str1[10] = { "aaa" };
    char str2[10] = { "bbb" };

    printf("Searching \'%s\' for \'%s\' and \'%s\'\n", str, str1, str2);
    printf("           0123456789\n\n"); // Easily see the elements
    printf("The word between is: \'%s\'\n", fast_strbetween(str, str1, str2));

    for(int i = 10000000; --i;)
        free(fast_strbetween(str, str1, str2));

    return 0;
}
fast_strb介于2.c之间:

/*
   Compile with:
   gcc -Wall -O3 fast_strbetween2.c -o fast_strbetween2

   Corrections and additions courtesy of:
   https://stackoverflow.com/questions/55308295/extracting-a-string-between-two-similar-or-different-strings-in-c-as-fast-as-p

*/

#include<stdio.h>  // printf
#include<stdlib.h> // malloc, free

// Strings now set to 'const'
char * fast_strbetween(const char *str, const char *str1, const char *str2)
{
    // string size will now be calculated by the characters picked up
    size_t str1pos    = 0;
    size_t str1chars;

    // Find str1
    do{

        str1chars = 0;

        // Will the do/while str1 check for '\0' suffice?
        // I haven't seen any issues yet, but not sure.
        while(str1[str1chars] == str[str1pos + str1chars]  && str1[str1chars] != '\0')
        {
            //printf("Found str1 char: %i num: %i pos: %i\n", str1[str1chars], str1chars + 1, str1pos);

            ++str1chars;
        }

        // Incrementing whilst not in conditional expression tested faster
        ++str1pos;

    /* There are two checks for "str1[str1chars] != '\0'". Trying to find
       another efficient way to do it in one. */
    }while(str[str1pos] != '\0' && str1[str1chars] != '\0');

    --str1pos;

    //For testing:
    //printf("str1pos: %i str1chars: %i\n", str1pos, str1chars);

    // exit if no chars were found or if didn't reach end of str1
    if(!str1chars || str1[str1chars] != '\0')
    {
        //printf("Bailing from str1 result\n");
        return '\0';
    }

    /* Got rid of the '+1' code which didn't allow for '' returns.
       I agree with your logic of <tag></tag> returning ''. */
    size_t str2pos = str1pos + str1chars;
    size_t str2chars;

    //printf("Starting pos for str2: %i\n", str1pos + str1chars);

    // Find str2
    do{

        str2chars = 0;

        while(str2[str2chars] == str[str2pos + str2chars] && str2[str2chars] != '\0')
        {
            //printf("Found str2 char: %i num: %i pos: %i \n", str2[str2chars], str2chars + 1, str2pos);
            ++str2chars;
        }

        ++str2pos;

    }while(str[str2pos] != '\0' && str2[str2chars] != '\0');

    --str2pos;

    //For testing:
    //printf("str2pos: %i str2chars: %i\n", str2pos, str2chars);

    if(!str2chars || str2[str2chars] != '\0')
    {
        //printf("Bailing from str2 result!\n");
        return '\0';
    }

    /* Trying to allocate strbetween with malloc. Is this correct? */
    char * strbetween = malloc(2);

    // Check if malloc succeeded:
    if (strbetween == '\0') return '\0';

    size_t tmp = 0;

    // Grab and store the string between!
    for(size_t i = str1pos + str1chars; i < str2pos; ++i)
    {
        strbetween[tmp] = str[i];
        ++tmp;
    }

    return strbetween;
}

int main() {

    char str[30]  = { "abaabbbaaaabbabbbaaabbb" };
    char str1[10] = { "aaa" };
    char str2[10] = { "bbb" };

    printf("Searching \'%s\' for \'%s\' and \'%s\'\n", str, str1, str2);
    printf("           0123456789\n\n"); // Easily see the elements
    printf("The word between is: \'%s\'\n", fast_strbetween(str, str1, str2));

    for(int i = 10000000; --i;)
        free(fast_strbetween(str, str1, str2));

    return 0;
}
根据Linux的“top”命令,进程使用了99.0-100%的CPU。 运行时使用的内存:1.8Mb 可执行文件大小:8336字节 在树莓皮3B+4 x 1.4Ghz的6臂上运行

/*
   Compile with:
   gcc -Wall -O3 fast_strbetween2.c -o fast_strbetween2

   Corrections and additions courtesy of:
   https://stackoverflow.com/questions/55308295/extracting-a-string-between-two-similar-or-different-strings-in-c-as-fast-as-p

*/

#include<stdio.h>  // printf
#include<stdlib.h> // malloc, free

// Strings now set to 'const'
char * fast_strbetween(const char *str, const char *str1, const char *str2)
{
    // string size will now be calculated by the characters picked up
    size_t str1pos    = 0;
    size_t str1chars;

    // Find str1
    do{

        str1chars = 0;

        // Will the do/while str1 check for '\0' suffice?
        // I haven't seen any issues yet, but not sure.
        while(str1[str1chars] == str[str1pos + str1chars]  && str1[str1chars] != '\0')
        {
            //printf("Found str1 char: %i num: %i pos: %i\n", str1[str1chars], str1chars + 1, str1pos);

            ++str1chars;
        }

        // Incrementing whilst not in conditional expression tested faster
        ++str1pos;

    /* There are two checks for "str1[str1chars] != '\0'". Trying to find
       another efficient way to do it in one. */
    }while(str[str1pos] != '\0' && str1[str1chars] != '\0');

    --str1pos;

    //For testing:
    //printf("str1pos: %i str1chars: %i\n", str1pos, str1chars);

    // exit if no chars were found or if didn't reach end of str1
    if(!str1chars || str1[str1chars] != '\0')
    {
        //printf("Bailing from str1 result\n");
        return '\0';
    }

    /* Got rid of the '+1' code which didn't allow for '' returns.
       I agree with your logic of <tag></tag> returning ''. */
    size_t str2pos = str1pos + str1chars;
    size_t str2chars;

    //printf("Starting pos for str2: %i\n", str1pos + str1chars);

    // Find str2
    do{

        str2chars = 0;

        while(str2[str2chars] == str[str2pos + str2chars] && str2[str2chars] != '\0')
        {
            //printf("Found str2 char: %i num: %i pos: %i \n", str2[str2chars], str2chars + 1, str2pos);
            ++str2chars;
        }

        ++str2pos;

    }while(str[str2pos] != '\0' && str2[str2chars] != '\0');

    --str2pos;

    //For testing:
    //printf("str2pos: %i str2chars: %i\n", str2pos, str2chars);

    if(!str2chars || str2[str2chars] != '\0')
    {
        //printf("Bailing from str2 result!\n");
        return '\0';
    }

    /* Trying to allocate strbetween with malloc. Is this correct? */
    char * strbetween = malloc(2);

    // Check if malloc succeeded:
    if (strbetween == '\0') return '\0';

    size_t tmp = 0;

    // Grab and store the string between!
    for(size_t i = str1pos + str1chars; i < str2pos; ++i)
    {
        strbetween[tmp] = str[i];
        ++tmp;
    }

    return strbetween;
}

int main() {

    char str[30]  = { "abaabbbaaaabbabbbaaabbb" };
    char str1[10] = { "aaa" };
    char str2[10] = { "bbb" };

    printf("Searching \'%s\' for \'%s\' and \'%s\'\n", str, str1, str2);
    printf("           0123456789\n\n"); // Easily see the elements
    printf("The word between is: \'%s\'\n", fast_strbetween(str, str1, str2));

    for(int i = 10000000; --i;)
        free(fast_strbetween(str, str1, str2));

    return 0;
}
切克利的回答

/*
   Compile with:
   gcc -Wall -O3 fast_strbetween2.c -o fast_strbetween2

   Corrections and additions courtesy of:
   https://stackoverflow.com/questions/55308295/extracting-a-string-between-two-similar-or-different-strings-in-c-as-fast-as-p

*/

#include<stdio.h>  // printf
#include<stdlib.h> // malloc, free

// Strings now set to 'const'
char * fast_strbetween(const char *str, const char *str1, const char *str2)
{
    // string size will now be calculated by the characters picked up
    size_t str1pos    = 0;
    size_t str1chars;

    // Find str1
    do{

        str1chars = 0;

        // Will the do/while str1 check for '\0' suffice?
        // I haven't seen any issues yet, but not sure.
        while(str1[str1chars] == str[str1pos + str1chars]  && str1[str1chars] != '\0')
        {
            //printf("Found str1 char: %i num: %i pos: %i\n", str1[str1chars], str1chars + 1, str1pos);

            ++str1chars;
        }

        // Incrementing whilst not in conditional expression tested faster
        ++str1pos;

    /* There are two checks for "str1[str1chars] != '\0'". Trying to find
       another efficient way to do it in one. */
    }while(str[str1pos] != '\0' && str1[str1chars] != '\0');

    --str1pos;

    //For testing:
    //printf("str1pos: %i str1chars: %i\n", str1pos, str1chars);

    // exit if no chars were found or if didn't reach end of str1
    if(!str1chars || str1[str1chars] != '\0')
    {
        //printf("Bailing from str1 result\n");
        return '\0';
    }

    /* Got rid of the '+1' code which didn't allow for '' returns.
       I agree with your logic of <tag></tag> returning ''. */
    size_t str2pos = str1pos + str1chars;
    size_t str2chars;

    //printf("Starting pos for str2: %i\n", str1pos + str1chars);

    // Find str2
    do{

        str2chars = 0;

        while(str2[str2chars] == str[str2pos + str2chars] && str2[str2chars] != '\0')
        {
            //printf("Found str2 char: %i num: %i pos: %i \n", str2[str2chars], str2chars + 1, str2pos);
            ++str2chars;
        }

        ++str2pos;

    }while(str[str2pos] != '\0' && str2[str2chars] != '\0');

    --str2pos;

    //For testing:
    //printf("str2pos: %i str2chars: %i\n", str2pos, str2chars);

    if(!str2chars || str2[str2chars] != '\0')
    {
        //printf("Bailing from str2 result!\n");
        return '\0';
    }

    /* Trying to allocate strbetween with malloc. Is this correct? */
    char * strbetween = malloc(2);

    // Check if malloc succeeded:
    if (strbetween == '\0') return '\0';

    size_t tmp = 0;

    // Grab and store the string between!
    for(size_t i = str1pos + str1chars; i < str2pos; ++i)
    {
        strbetween[tmp] = str[i];
        ++tmp;
    }

    return strbetween;
}

int main() {

    char str[30]  = { "abaabbbaaaabbabbbaaabbb" };
    char str1[10] = { "aaa" };
    char str2[10] = { "bbb" };

    printf("Searching \'%s\' for \'%s\' and \'%s\'\n", str, str1, str2);
    printf("           0123456789\n\n"); // Easily see the elements
    printf("The word between is: \'%s\'\n", fast_strbetween(str, str1, str2));

    for(int i = 10000000; --i;)
        free(fast_strbetween(str, str1, str2));

    return 0;
}
我知道这只是一些显示正确编程实践的示例代码。尽管如此,它可以在测试中实现良好的控制

/*
   Compile with:
   gcc -Wall -O3 fast_strbetween2.c -o fast_strbetween2

   Corrections and additions courtesy of:
   https://stackoverflow.com/questions/55308295/extracting-a-string-between-two-similar-or-different-strings-in-c-as-fast-as-p

*/

#include<stdio.h>  // printf
#include<stdlib.h> // malloc, free

// Strings now set to 'const'
char * fast_strbetween(const char *str, const char *str1, const char *str2)
{
    // string size will now be calculated by the characters picked up
    size_t str1pos    = 0;
    size_t str1chars;

    // Find str1
    do{

        str1chars = 0;

        // Will the do/while str1 check for '\0' suffice?
        // I haven't seen any issues yet, but not sure.
        while(str1[str1chars] == str[str1pos + str1chars]  && str1[str1chars] != '\0')
        {
            //printf("Found str1 char: %i num: %i pos: %i\n", str1[str1chars], str1chars + 1, str1pos);

            ++str1chars;
        }

        // Incrementing whilst not in conditional expression tested faster
        ++str1pos;

    /* There are two checks for "str1[str1chars] != '\0'". Trying to find
       another efficient way to do it in one. */
    }while(str[str1pos] != '\0' && str1[str1chars] != '\0');

    --str1pos;

    //For testing:
    //printf("str1pos: %i str1chars: %i\n", str1pos, str1chars);

    // exit if no chars were found or if didn't reach end of str1
    if(!str1chars || str1[str1chars] != '\0')
    {
        //printf("Bailing from str1 result\n");
        return '\0';
    }

    /* Got rid of the '+1' code which didn't allow for '' returns.
       I agree with your logic of <tag></tag> returning ''. */
    size_t str2pos = str1pos + str1chars;
    size_t str2chars;

    //printf("Starting pos for str2: %i\n", str1pos + str1chars);

    // Find str2
    do{

        str2chars = 0;

        while(str2[str2chars] == str[str2pos + str2chars] && str2[str2chars] != '\0')
        {
            //printf("Found str2 char: %i num: %i pos: %i \n", str2[str2chars], str2chars + 1, str2pos);
            ++str2chars;
        }

        ++str2pos;

    }while(str[str2pos] != '\0' && str2[str2chars] != '\0');

    --str2pos;

    //For testing:
    //printf("str2pos: %i str2chars: %i\n", str2pos, str2chars);

    if(!str2chars || str2[str2chars] != '\0')
    {
        //printf("Bailing from str2 result!\n");
        return '\0';
    }

    /* Trying to allocate strbetween with malloc. Is this correct? */
    char * strbetween = malloc(2);

    // Check if malloc succeeded:
    if (strbetween == '\0') return '\0';

    size_t tmp = 0;

    // Grab and store the string between!
    for(size_t i = str1pos + str1chars; i < str2pos; ++i)
    {
        strbetween[tmp] = str[i];
        ++tmp;
    }

    return strbetween;
}

int main() {

    char str[30]  = { "abaabbbaaaabbabbbaaabbb" };
    char str1[10] = { "aaa" };
    char str2[10] = { "bbb" };

    printf("Searching \'%s\' for \'%s\' and \'%s\'\n", str, str1, str2);
    printf("           0123456789\n\n"); // Easily see the elements
    printf("The word between is: \'%s\'\n", fast_strbetween(str, str1, str2));

    for(int i = 10000000; --i;)
        free(fast_strbetween(str, str1, str2));

    return 0;
}
请注意,我不知道如何在代码中释放malloc,所以这不是一个公平的测试。因此,ram的使用量不断增加,仅此过程就需要130Mb以上的内存。我仍然能够运行完整10000000个循环的测试。我要说的是,我试着以我编写代码的方式释放这段代码,方法是将函数“simple_strbetween”放入main中,并使用“freestrndupp,q-p;”释放,结果与不解除分配没有太大区别

/*
   Compile with:
   gcc -Wall -O3 fast_strbetween2.c -o fast_strbetween2

   Corrections and additions courtesy of:
   https://stackoverflow.com/questions/55308295/extracting-a-string-between-two-similar-or-different-strings-in-c-as-fast-as-p

*/

#include<stdio.h>  // printf
#include<stdlib.h> // malloc, free

// Strings now set to 'const'
char * fast_strbetween(const char *str, const char *str1, const char *str2)
{
    // string size will now be calculated by the characters picked up
    size_t str1pos    = 0;
    size_t str1chars;

    // Find str1
    do{

        str1chars = 0;

        // Will the do/while str1 check for '\0' suffice?
        // I haven't seen any issues yet, but not sure.
        while(str1[str1chars] == str[str1pos + str1chars]  && str1[str1chars] != '\0')
        {
            //printf("Found str1 char: %i num: %i pos: %i\n", str1[str1chars], str1chars + 1, str1pos);

            ++str1chars;
        }

        // Incrementing whilst not in conditional expression tested faster
        ++str1pos;

    /* There are two checks for "str1[str1chars] != '\0'". Trying to find
       another efficient way to do it in one. */
    }while(str[str1pos] != '\0' && str1[str1chars] != '\0');

    --str1pos;

    //For testing:
    //printf("str1pos: %i str1chars: %i\n", str1pos, str1chars);

    // exit if no chars were found or if didn't reach end of str1
    if(!str1chars || str1[str1chars] != '\0')
    {
        //printf("Bailing from str1 result\n");
        return '\0';
    }

    /* Got rid of the '+1' code which didn't allow for '' returns.
       I agree with your logic of <tag></tag> returning ''. */
    size_t str2pos = str1pos + str1chars;
    size_t str2chars;

    //printf("Starting pos for str2: %i\n", str1pos + str1chars);

    // Find str2
    do{

        str2chars = 0;

        while(str2[str2chars] == str[str2pos + str2chars] && str2[str2chars] != '\0')
        {
            //printf("Found str2 char: %i num: %i pos: %i \n", str2[str2chars], str2chars + 1, str2pos);
            ++str2chars;
        }

        ++str2pos;

    }while(str[str2pos] != '\0' && str2[str2chars] != '\0');

    --str2pos;

    //For testing:
    //printf("str2pos: %i str2chars: %i\n", str2pos, str2chars);

    if(!str2chars || str2[str2chars] != '\0')
    {
        //printf("Bailing from str2 result!\n");
        return '\0';
    }

    /* Trying to allocate strbetween with malloc. Is this correct? */
    char * strbetween = malloc(2);

    // Check if malloc succeeded:
    if (strbetween == '\0') return '\0';

    size_t tmp = 0;

    // Grab and store the string between!
    for(size_t i = str1pos + str1chars; i < str2pos; ++i)
    {
        strbetween[tmp] = str[i];
        ++tmp;
    }

    return strbetween;
}

int main() {

    char str[30]  = { "abaabbbaaaabbabbbaaabbb" };
    char str1[10] = { "aaa" };
    char str2[10] = { "bbb" };

    printf("Searching \'%s\' for \'%s\' and \'%s\'\n", str, str1, str2);
    printf("           0123456789\n\n"); // Easily see the elements
    printf("The word between is: \'%s\'\n", fast_strbetween(str, str1, str2));

    for(int i = 10000000; --i;)
        free(fast_strbetween(str, str1, str2));

    return 0;
}
**c之间的简单\u strb**

/*
   Compile with:
   gcc -Wall -O3 fast_strbetween2.c -o fast_strbetween2

   Corrections and additions courtesy of:
   https://stackoverflow.com/questions/55308295/extracting-a-string-between-two-similar-or-different-strings-in-c-as-fast-as-p

*/

#include<stdio.h>  // printf
#include<stdlib.h> // malloc, free

// Strings now set to 'const'
char * fast_strbetween(const char *str, const char *str1, const char *str2)
{
    // string size will now be calculated by the characters picked up
    size_t str1pos    = 0;
    size_t str1chars;

    // Find str1
    do{

        str1chars = 0;

        // Will the do/while str1 check for '\0' suffice?
        // I haven't seen any issues yet, but not sure.
        while(str1[str1chars] == str[str1pos + str1chars]  && str1[str1chars] != '\0')
        {
            //printf("Found str1 char: %i num: %i pos: %i\n", str1[str1chars], str1chars + 1, str1pos);

            ++str1chars;
        }

        // Incrementing whilst not in conditional expression tested faster
        ++str1pos;

    /* There are two checks for "str1[str1chars] != '\0'". Trying to find
       another efficient way to do it in one. */
    }while(str[str1pos] != '\0' && str1[str1chars] != '\0');

    --str1pos;

    //For testing:
    //printf("str1pos: %i str1chars: %i\n", str1pos, str1chars);

    // exit if no chars were found or if didn't reach end of str1
    if(!str1chars || str1[str1chars] != '\0')
    {
        //printf("Bailing from str1 result\n");
        return '\0';
    }

    /* Got rid of the '+1' code which didn't allow for '' returns.
       I agree with your logic of <tag></tag> returning ''. */
    size_t str2pos = str1pos + str1chars;
    size_t str2chars;

    //printf("Starting pos for str2: %i\n", str1pos + str1chars);

    // Find str2
    do{

        str2chars = 0;

        while(str2[str2chars] == str[str2pos + str2chars] && str2[str2chars] != '\0')
        {
            //printf("Found str2 char: %i num: %i pos: %i \n", str2[str2chars], str2chars + 1, str2pos);
            ++str2chars;
        }

        ++str2pos;

    }while(str[str2pos] != '\0' && str2[str2chars] != '\0');

    --str2pos;

    //For testing:
    //printf("str2pos: %i str2chars: %i\n", str2pos, str2chars);

    if(!str2chars || str2[str2chars] != '\0')
    {
        //printf("Bailing from str2 result!\n");
        return '\0';
    }

    /* Trying to allocate strbetween with malloc. Is this correct? */
    char * strbetween = malloc(2);

    // Check if malloc succeeded:
    if (strbetween == '\0') return '\0';

    size_t tmp = 0;

    // Grab and store the string between!
    for(size_t i = str1pos + str1chars; i < str2pos; ++i)
    {
        strbetween[tmp] = str[i];
        ++tmp;
    }

    return strbetween;
}

int main() {

    char str[30]  = { "abaabbbaaaabbabbbaaabbb" };
    char str1[10] = { "aaa" };
    char str2[10] = { "bbb" };

    printf("Searching \'%s\' for \'%s\' and \'%s\'\n", str, str1, str2);
    printf("           0123456789\n\n"); // Easily see the elements
    printf("The word between is: \'%s\'\n", fast_strbetween(str, str1, str2));

    for(int i = 10000000; --i;)
        free(fast_strbetween(str, str1, str2));

    return 0;
}
/*
   Compile with:
   gcc -Wall -O3 simple_strbetween.c -o simple_strbetween

   Courtesy of:
   https://stackoverflow.com/questions/55308295/extracting-a-string-between-two-similar-or-different-strings-in-c-as-fast-as-p

*/

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

char *simple_strbetween(const char *str, const char *str1, const char *str2) {

    const char *q;
    const char *p = strstr(str, str1);

    if (p) {
        p += strlen(str1);
        q = *str2 ? strstr(p, str2) : p + strlen(p);
        if (q)
            return strndup(p, q - p);
    }

    return NULL;
}

int main() {

    char str[30] =  { "abaabbbaaaabbabbbaaabbb" };
    char str1[10] = { "aaa" };
    char str2[10] = { "bbb" };

    printf("Searching \'%s\' for \'%s\' and \'%s\'\n", str, str1, str2);
    printf("           0123456789\n\n"); // Easily see the elements
    printf("The word between is: \'%s\'\n", simple_strbetween(str, str1, str2));

    for(int i = 10000000; --i;)
        simple_strbetween(str, str1, str2);

    return 0;
}

$ time simple_strbetween                                                
Searching 'abaabbbaaaabbabbbaaabbb' for 'aaa' and 'bbb'
           0123456789

The word between is: 'abba'
    0m19.68s real     0m19.34s user     0m00.32s system
根据Linux的“top”命令,进程使用了100%的CPU。 运行时使用的内存:由于缺乏知识,导致130Mb内存泄漏 可执行文件大小:8380字节 在树莓皮3B+4 x 1.4Ghz的6臂上运行

/*
   Compile with:
   gcc -Wall -O3 fast_strbetween2.c -o fast_strbetween2

   Corrections and additions courtesy of:
   https://stackoverflow.com/questions/55308295/extracting-a-string-between-two-similar-or-different-strings-in-c-as-fast-as-p

*/

#include<stdio.h>  // printf
#include<stdlib.h> // malloc, free

// Strings now set to 'const'
char * fast_strbetween(const char *str, const char *str1, const char *str2)
{
    // string size will now be calculated by the characters picked up
    size_t str1pos    = 0;
    size_t str1chars;

    // Find str1
    do{

        str1chars = 0;

        // Will the do/while str1 check for '\0' suffice?
        // I haven't seen any issues yet, but not sure.
        while(str1[str1chars] == str[str1pos + str1chars]  && str1[str1chars] != '\0')
        {
            //printf("Found str1 char: %i num: %i pos: %i\n", str1[str1chars], str1chars + 1, str1pos);

            ++str1chars;
        }

        // Incrementing whilst not in conditional expression tested faster
        ++str1pos;

    /* There are two checks for "str1[str1chars] != '\0'". Trying to find
       another efficient way to do it in one. */
    }while(str[str1pos] != '\0' && str1[str1chars] != '\0');

    --str1pos;

    //For testing:
    //printf("str1pos: %i str1chars: %i\n", str1pos, str1chars);

    // exit if no chars were found or if didn't reach end of str1
    if(!str1chars || str1[str1chars] != '\0')
    {
        //printf("Bailing from str1 result\n");
        return '\0';
    }

    /* Got rid of the '+1' code which didn't allow for '' returns.
       I agree with your logic of <tag></tag> returning ''. */
    size_t str2pos = str1pos + str1chars;
    size_t str2chars;

    //printf("Starting pos for str2: %i\n", str1pos + str1chars);

    // Find str2
    do{

        str2chars = 0;

        while(str2[str2chars] == str[str2pos + str2chars] && str2[str2chars] != '\0')
        {
            //printf("Found str2 char: %i num: %i pos: %i \n", str2[str2chars], str2chars + 1, str2pos);
            ++str2chars;
        }

        ++str2pos;

    }while(str[str2pos] != '\0' && str2[str2chars] != '\0');

    --str2pos;

    //For testing:
    //printf("str2pos: %i str2chars: %i\n", str2pos, str2chars);

    if(!str2chars || str2[str2chars] != '\0')
    {
        //printf("Bailing from str2 result!\n");
        return '\0';
    }

    /* Trying to allocate strbetween with malloc. Is this correct? */
    char * strbetween = malloc(2);

    // Check if malloc succeeded:
    if (strbetween == '\0') return '\0';

    size_t tmp = 0;

    // Grab and store the string between!
    for(size_t i = str1pos + str1chars; i < str2pos; ++i)
    {
        strbetween[tmp] = str[i];
        ++tmp;
    }

    return strbetween;
}

int main() {

    char str[30]  = { "abaabbbaaaabbabbbaaabbb" };
    char str1[10] = { "aaa" };
    char str2[10] = { "bbb" };

    printf("Searching \'%s\' for \'%s\' and \'%s\'\n", str, str1, str2);
    printf("           0123456789\n\n"); // Easily see the elements
    printf("The word between is: \'%s\'\n", fast_strbetween(str, str1, str2));

    for(int i = 10000000; --i;)
        free(fast_strbetween(str, str1, str2));

    return 0;
}
使用此备用strndup运行上述代码的结果:

/*
   Compile with:
   gcc -Wall -O3 fast_strbetween2.c -o fast_strbetween2

   Corrections and additions courtesy of:
   https://stackoverflow.com/questions/55308295/extracting-a-string-between-two-similar-or-different-strings-in-c-as-fast-as-p

*/

#include<stdio.h>  // printf
#include<stdlib.h> // malloc, free

// Strings now set to 'const'
char * fast_strbetween(const char *str, const char *str1, const char *str2)
{
    // string size will now be calculated by the characters picked up
    size_t str1pos    = 0;
    size_t str1chars;

    // Find str1
    do{

        str1chars = 0;

        // Will the do/while str1 check for '\0' suffice?
        // I haven't seen any issues yet, but not sure.
        while(str1[str1chars] == str[str1pos + str1chars]  && str1[str1chars] != '\0')
        {
            //printf("Found str1 char: %i num: %i pos: %i\n", str1[str1chars], str1chars + 1, str1pos);

            ++str1chars;
        }

        // Incrementing whilst not in conditional expression tested faster
        ++str1pos;

    /* There are two checks for "str1[str1chars] != '\0'". Trying to find
       another efficient way to do it in one. */
    }while(str[str1pos] != '\0' && str1[str1chars] != '\0');

    --str1pos;

    //For testing:
    //printf("str1pos: %i str1chars: %i\n", str1pos, str1chars);

    // exit if no chars were found or if didn't reach end of str1
    if(!str1chars || str1[str1chars] != '\0')
    {
        //printf("Bailing from str1 result\n");
        return '\0';
    }

    /* Got rid of the '+1' code which didn't allow for '' returns.
       I agree with your logic of <tag></tag> returning ''. */
    size_t str2pos = str1pos + str1chars;
    size_t str2chars;

    //printf("Starting pos for str2: %i\n", str1pos + str1chars);

    // Find str2
    do{

        str2chars = 0;

        while(str2[str2chars] == str[str2pos + str2chars] && str2[str2chars] != '\0')
        {
            //printf("Found str2 char: %i num: %i pos: %i \n", str2[str2chars], str2chars + 1, str2pos);
            ++str2chars;
        }

        ++str2pos;

    }while(str[str2pos] != '\0' && str2[str2chars] != '\0');

    --str2pos;

    //For testing:
    //printf("str2pos: %i str2chars: %i\n", str2pos, str2chars);

    if(!str2chars || str2[str2chars] != '\0')
    {
        //printf("Bailing from str2 result!\n");
        return '\0';
    }

    /* Trying to allocate strbetween with malloc. Is this correct? */
    char * strbetween = malloc(2);

    // Check if malloc succeeded:
    if (strbetween == '\0') return '\0';

    size_t tmp = 0;

    // Grab and store the string between!
    for(size_t i = str1pos + str1chars; i < str2pos; ++i)
    {
        strbetween[tmp] = str[i];
        ++tmp;
    }

    return strbetween;
}

int main() {

    char str[30]  = { "abaabbbaaaabbabbbaaabbb" };
    char str1[10] = { "aaa" };
    char str2[10] = { "bbb" };

    printf("Searching \'%s\' for \'%s\' and \'%s\'\n", str, str1, str2);
    printf("           0123456789\n\n"); // Easily see the elements
    printf("The word between is: \'%s\'\n", fast_strbetween(str, str1, str2));

    for(int i = 10000000; --i;)
        free(fast_strbetween(str, str1, str2));

    return 0;
}
char *alt_strndup(const char *s, size_t n)
{   
    size_t i;
    char *p; 
    for (i = 0; i < n && s[i] != '\0'; i++)
        continue;
    p = malloc(i + 1);
    if (p != NULL) { 
        memcpy(p, s, i);
        p[i] = '\0';
    }
    return p;
}

$ time simple_strbetween                                                
Searching 'abaabbbaaaabbabbbaaabbb' for 'aaa' and 'bbb'
           0123456789

The word between is: 'abba'
    0m20.99s real     0m20.54s user     0m00.44s system
我恳请在代码正确运行之前,不要对结果做出判断。一旦计算出来,我会尽快修改结果

/*
   Compile with:
   gcc -Wall -O3 fast_strbetween2.c -o fast_strbetween2

   Corrections and additions courtesy of:
   https://stackoverflow.com/questions/55308295/extracting-a-string-between-two-similar-or-different-strings-in-c-as-fast-as-p

*/

#include<stdio.h>  // printf
#include<stdlib.h> // malloc, free

// Strings now set to 'const'
char * fast_strbetween(const char *str, const char *str1, const char *str2)
{
    // string size will now be calculated by the characters picked up
    size_t str1pos    = 0;
    size_t str1chars;

    // Find str1
    do{

        str1chars = 0;

        // Will the do/while str1 check for '\0' suffice?
        // I haven't seen any issues yet, but not sure.
        while(str1[str1chars] == str[str1pos + str1chars]  && str1[str1chars] != '\0')
        {
            //printf("Found str1 char: %i num: %i pos: %i\n", str1[str1chars], str1chars + 1, str1pos);

            ++str1chars;
        }

        // Incrementing whilst not in conditional expression tested faster
        ++str1pos;

    /* There are two checks for "str1[str1chars] != '\0'". Trying to find
       another efficient way to do it in one. */
    }while(str[str1pos] != '\0' && str1[str1chars] != '\0');

    --str1pos;

    //For testing:
    //printf("str1pos: %i str1chars: %i\n", str1pos, str1chars);

    // exit if no chars were found or if didn't reach end of str1
    if(!str1chars || str1[str1chars] != '\0')
    {
        //printf("Bailing from str1 result\n");
        return '\0';
    }

    /* Got rid of the '+1' code which didn't allow for '' returns.
       I agree with your logic of <tag></tag> returning ''. */
    size_t str2pos = str1pos + str1chars;
    size_t str2chars;

    //printf("Starting pos for str2: %i\n", str1pos + str1chars);

    // Find str2
    do{

        str2chars = 0;

        while(str2[str2chars] == str[str2pos + str2chars] && str2[str2chars] != '\0')
        {
            //printf("Found str2 char: %i num: %i pos: %i \n", str2[str2chars], str2chars + 1, str2pos);
            ++str2chars;
        }

        ++str2pos;

    }while(str[str2pos] != '\0' && str2[str2chars] != '\0');

    --str2pos;

    //For testing:
    //printf("str2pos: %i str2chars: %i\n", str2pos, str2chars);

    if(!str2chars || str2[str2chars] != '\0')
    {
        //printf("Bailing from str2 result!\n");
        return '\0';
    }

    /* Trying to allocate strbetween with malloc. Is this correct? */
    char * strbetween = malloc(2);

    // Check if malloc succeeded:
    if (strbetween == '\0') return '\0';

    size_t tmp = 0;

    // Grab and store the string between!
    for(size_t i = str1pos + str1chars; i < str2pos; ++i)
    {
        strbetween[tmp] = str[i];
        ++tmp;
    }

    return strbetween;
}

int main() {

    char str[30]  = { "abaabbbaaaabbabbbaaabbb" };
    char str1[10] = { "aaa" };
    char str2[10] = { "bbb" };

    printf("Searching \'%s\' for \'%s\' and \'%s\'\n", str, str1, str2);
    printf("           0123456789\n\n"); // Easily see the elements
    printf("The word between is: \'%s\'\n", fast_strbetween(str, str1, str2));

    for(int i = 10000000; --i;)
        free(fast_strbetween(str, str1, str2));

    return 0;
}
*编辑*

/*
   Compile with:
   gcc -Wall -O3 fast_strbetween2.c -o fast_strbetween2

   Corrections and additions courtesy of:
   https://stackoverflow.com/questions/55308295/extracting-a-string-between-two-similar-or-different-strings-in-c-as-fast-as-p

*/

#include<stdio.h>  // printf
#include<stdlib.h> // malloc, free

// Strings now set to 'const'
char * fast_strbetween(const char *str, const char *str1, const char *str2)
{
    // string size will now be calculated by the characters picked up
    size_t str1pos    = 0;
    size_t str1chars;

    // Find str1
    do{

        str1chars = 0;

        // Will the do/while str1 check for '\0' suffice?
        // I haven't seen any issues yet, but not sure.
        while(str1[str1chars] == str[str1pos + str1chars]  && str1[str1chars] != '\0')
        {
            //printf("Found str1 char: %i num: %i pos: %i\n", str1[str1chars], str1chars + 1, str1pos);

            ++str1chars;
        }

        // Incrementing whilst not in conditional expression tested faster
        ++str1pos;

    /* There are two checks for "str1[str1chars] != '\0'". Trying to find
       another efficient way to do it in one. */
    }while(str[str1pos] != '\0' && str1[str1chars] != '\0');

    --str1pos;

    //For testing:
    //printf("str1pos: %i str1chars: %i\n", str1pos, str1chars);

    // exit if no chars were found or if didn't reach end of str1
    if(!str1chars || str1[str1chars] != '\0')
    {
        //printf("Bailing from str1 result\n");
        return '\0';
    }

    /* Got rid of the '+1' code which didn't allow for '' returns.
       I agree with your logic of <tag></tag> returning ''. */
    size_t str2pos = str1pos + str1chars;
    size_t str2chars;

    //printf("Starting pos for str2: %i\n", str1pos + str1chars);

    // Find str2
    do{

        str2chars = 0;

        while(str2[str2chars] == str[str2pos + str2chars] && str2[str2chars] != '\0')
        {
            //printf("Found str2 char: %i num: %i pos: %i \n", str2[str2chars], str2chars + 1, str2pos);
            ++str2chars;
        }

        ++str2pos;

    }while(str[str2pos] != '\0' && str2[str2chars] != '\0');

    --str2pos;

    //For testing:
    //printf("str2pos: %i str2chars: %i\n", str2pos, str2chars);

    if(!str2chars || str2[str2chars] != '\0')
    {
        //printf("Bailing from str2 result!\n");
        return '\0';
    }

    /* Trying to allocate strbetween with malloc. Is this correct? */
    char * strbetween = malloc(2);

    // Check if malloc succeeded:
    if (strbetween == '\0') return '\0';

    size_t tmp = 0;

    // Grab and store the string between!
    for(size_t i = str1pos + str1chars; i < str2pos; ++i)
    {
        strbetween[tmp] = str[i];
        ++tmp;
    }

    return strbetween;
}

int main() {

    char str[30]  = { "abaabbbaaaabbabbbaaabbb" };
    char str1[10] = { "aaa" };
    char str2[10] = { "bbb" };

    printf("Searching \'%s\' for \'%s\' and \'%s\'\n", str, str1, str2);
    printf("           0123456789\n\n"); // Easily see the elements
    printf("The word between is: \'%s\'\n", fast_strbetween(str, str1, str2));

    for(int i = 10000000; --i;)
        free(fast_strbetween(str, str1, str2));

    return 0;
}
与8.7秒相比,11.93秒缩短了25%以上的时间。这是通过使用指针来增加位置来完成的,而不是大小。在检查最后一个字符串的同时收集返回字符串可能是导致最大更改的原因。我觉得还有很大的改进空间。一个巨大的损失来自于不得不释放malloc。如果有更好的办法,我想知道

/*
   Compile with:
   gcc -Wall -O3 fast_strbetween2.c -o fast_strbetween2

   Corrections and additions courtesy of:
   https://stackoverflow.com/questions/55308295/extracting-a-string-between-two-similar-or-different-strings-in-c-as-fast-as-p

*/

#include<stdio.h>  // printf
#include<stdlib.h> // malloc, free

// Strings now set to 'const'
char * fast_strbetween(const char *str, const char *str1, const char *str2)
{
    // string size will now be calculated by the characters picked up
    size_t str1pos    = 0;
    size_t str1chars;

    // Find str1
    do{

        str1chars = 0;

        // Will the do/while str1 check for '\0' suffice?
        // I haven't seen any issues yet, but not sure.
        while(str1[str1chars] == str[str1pos + str1chars]  && str1[str1chars] != '\0')
        {
            //printf("Found str1 char: %i num: %i pos: %i\n", str1[str1chars], str1chars + 1, str1pos);

            ++str1chars;
        }

        // Incrementing whilst not in conditional expression tested faster
        ++str1pos;

    /* There are two checks for "str1[str1chars] != '\0'". Trying to find
       another efficient way to do it in one. */
    }while(str[str1pos] != '\0' && str1[str1chars] != '\0');

    --str1pos;

    //For testing:
    //printf("str1pos: %i str1chars: %i\n", str1pos, str1chars);

    // exit if no chars were found or if didn't reach end of str1
    if(!str1chars || str1[str1chars] != '\0')
    {
        //printf("Bailing from str1 result\n");
        return '\0';
    }

    /* Got rid of the '+1' code which didn't allow for '' returns.
       I agree with your logic of <tag></tag> returning ''. */
    size_t str2pos = str1pos + str1chars;
    size_t str2chars;

    //printf("Starting pos for str2: %i\n", str1pos + str1chars);

    // Find str2
    do{

        str2chars = 0;

        while(str2[str2chars] == str[str2pos + str2chars] && str2[str2chars] != '\0')
        {
            //printf("Found str2 char: %i num: %i pos: %i \n", str2[str2chars], str2chars + 1, str2pos);
            ++str2chars;
        }

        ++str2pos;

    }while(str[str2pos] != '\0' && str2[str2chars] != '\0');

    --str2pos;

    //For testing:
    //printf("str2pos: %i str2chars: %i\n", str2pos, str2chars);

    if(!str2chars || str2[str2chars] != '\0')
    {
        //printf("Bailing from str2 result!\n");
        return '\0';
    }

    /* Trying to allocate strbetween with malloc. Is this correct? */
    char * strbetween = malloc(2);

    // Check if malloc succeeded:
    if (strbetween == '\0') return '\0';

    size_t tmp = 0;

    // Grab and store the string between!
    for(size_t i = str1pos + str1chars; i < str2pos; ++i)
    {
        strbetween[tmp] = str[i];
        ++tmp;
    }

    return strbetween;
}

int main() {

    char str[30]  = { "abaabbbaaaabbabbbaaabbb" };
    char str1[10] = { "aaa" };
    char str2[10] = { "bbb" };

    printf("Searching \'%s\' for \'%s\' and \'%s\'\n", str, str1, str2);
    printf("           0123456789\n\n"); // Easily see the elements
    printf("The word between is: \'%s\'\n", fast_strbetween(str, str1, str2));

    for(int i = 10000000; --i;)
        free(fast_strbetween(str, str1, str2));

    return 0;
}
3.c之间的fast\u STRB:

/*
   Compile with:
   gcc -Wall -O3 fast_strbetween2.c -o fast_strbetween2

   Corrections and additions courtesy of:
   https://stackoverflow.com/questions/55308295/extracting-a-string-between-two-similar-or-different-strings-in-c-as-fast-as-p

*/

#include<stdio.h>  // printf
#include<stdlib.h> // malloc, free

// Strings now set to 'const'
char * fast_strbetween(const char *str, const char *str1, const char *str2)
{
    // string size will now be calculated by the characters picked up
    size_t str1pos    = 0;
    size_t str1chars;

    // Find str1
    do{

        str1chars = 0;

        // Will the do/while str1 check for '\0' suffice?
        // I haven't seen any issues yet, but not sure.
        while(str1[str1chars] == str[str1pos + str1chars]  && str1[str1chars] != '\0')
        {
            //printf("Found str1 char: %i num: %i pos: %i\n", str1[str1chars], str1chars + 1, str1pos);

            ++str1chars;
        }

        // Incrementing whilst not in conditional expression tested faster
        ++str1pos;

    /* There are two checks for "str1[str1chars] != '\0'". Trying to find
       another efficient way to do it in one. */
    }while(str[str1pos] != '\0' && str1[str1chars] != '\0');

    --str1pos;

    //For testing:
    //printf("str1pos: %i str1chars: %i\n", str1pos, str1chars);

    // exit if no chars were found or if didn't reach end of str1
    if(!str1chars || str1[str1chars] != '\0')
    {
        //printf("Bailing from str1 result\n");
        return '\0';
    }

    /* Got rid of the '+1' code which didn't allow for '' returns.
       I agree with your logic of <tag></tag> returning ''. */
    size_t str2pos = str1pos + str1chars;
    size_t str2chars;

    //printf("Starting pos for str2: %i\n", str1pos + str1chars);

    // Find str2
    do{

        str2chars = 0;

        while(str2[str2chars] == str[str2pos + str2chars] && str2[str2chars] != '\0')
        {
            //printf("Found str2 char: %i num: %i pos: %i \n", str2[str2chars], str2chars + 1, str2pos);
            ++str2chars;
        }

        ++str2pos;

    }while(str[str2pos] != '\0' && str2[str2chars] != '\0');

    --str2pos;

    //For testing:
    //printf("str2pos: %i str2chars: %i\n", str2pos, str2chars);

    if(!str2chars || str2[str2chars] != '\0')
    {
        //printf("Bailing from str2 result!\n");
        return '\0';
    }

    /* Trying to allocate strbetween with malloc. Is this correct? */
    char * strbetween = malloc(2);

    // Check if malloc succeeded:
    if (strbetween == '\0') return '\0';

    size_t tmp = 0;

    // Grab and store the string between!
    for(size_t i = str1pos + str1chars; i < str2pos; ++i)
    {
        strbetween[tmp] = str[i];
        ++tmp;
    }

    return strbetween;
}

int main() {

    char str[30]  = { "abaabbbaaaabbabbbaaabbb" };
    char str1[10] = { "aaa" };
    char str2[10] = { "bbb" };

    printf("Searching \'%s\' for \'%s\' and \'%s\'\n", str, str1, str2);
    printf("           0123456789\n\n"); // Easily see the elements
    printf("The word between is: \'%s\'\n", fast_strbetween(str, str1, str2));

    for(int i = 10000000; --i;)
        free(fast_strbetween(str, str1, str2));

    return 0;
}
/*

 gcc -Wall -O3 fast_strbetween.c -o fast_strbetween

*/

#include<stdio.h>  // printf
#include<stdlib.h> // malloc, free

char * fast_strbetween(const char *str, const char *str1, const char *str2)
{
    const char *sbegin = &str1[0];    // String beginning
    const char *spos;

    // Find str1
    do{

        spos = str;
        str1 = sbegin;

        while(*spos == *str1 && *str1)
        {
            ++spos;
            ++str1;
        }

        ++str;

    }while(*str1 && *spos); 

    // Nothing found if spos hasn't advanced
    if (spos == str)
        return NULL;

    char *strbetween = malloc(1);
    if (!strbetween)
        return '\0';

    str = spos;
    int i = 0;
    //char *p = &strbetween[0];   // Alt. for advancing strbetween (slower) 
    sbegin = &str2[0];     // Recycle sbegin

    // Find str2
    do{

        str2 = sbegin;
        spos = str;

        while(*spos == *str2 && *str2)
        {
            ++str2;
            ++spos;
        }

        //*p = *str;
        //++p;

        strbetween[i] = *str;
        ++str;
        ++i;

    }while(*str2 && *spos);

    if (spos == str)
        return NULL;

    //*--p = '\0';

    strbetween[i - 1] = '\0';

    return strbetween;
}

int main() {

    char s[100]  = "abaabbbaaaabbabbbaaabbb";
    char s1[100] = "aaa";
    char s2[100] = "bbb";

    printf("\nString: \'%s\'\n", fast_strbetween(s, s1, s2));

    for(int i = 10000000; --i; )
      free(fast_strbetween(s, s1, s2));

    return 0;
  }
字符串:“abba” 0m08.70s real 0m08.67s用户0m00.01s系统

/*
   Compile with:
   gcc -Wall -O3 fast_strbetween2.c -o fast_strbetween2

   Corrections and additions courtesy of:
   https://stackoverflow.com/questions/55308295/extracting-a-string-between-two-similar-or-different-strings-in-c-as-fast-as-p

*/

#include<stdio.h>  // printf
#include<stdlib.h> // malloc, free

// Strings now set to 'const'
char * fast_strbetween(const char *str, const char *str1, const char *str2)
{
    // string size will now be calculated by the characters picked up
    size_t str1pos    = 0;
    size_t str1chars;

    // Find str1
    do{

        str1chars = 0;

        // Will the do/while str1 check for '\0' suffice?
        // I haven't seen any issues yet, but not sure.
        while(str1[str1chars] == str[str1pos + str1chars]  && str1[str1chars] != '\0')
        {
            //printf("Found str1 char: %i num: %i pos: %i\n", str1[str1chars], str1chars + 1, str1pos);

            ++str1chars;
        }

        // Incrementing whilst not in conditional expression tested faster
        ++str1pos;

    /* There are two checks for "str1[str1chars] != '\0'". Trying to find
       another efficient way to do it in one. */
    }while(str[str1pos] != '\0' && str1[str1chars] != '\0');

    --str1pos;

    //For testing:
    //printf("str1pos: %i str1chars: %i\n", str1pos, str1chars);

    // exit if no chars were found or if didn't reach end of str1
    if(!str1chars || str1[str1chars] != '\0')
    {
        //printf("Bailing from str1 result\n");
        return '\0';
    }

    /* Got rid of the '+1' code which didn't allow for '' returns.
       I agree with your logic of <tag></tag> returning ''. */
    size_t str2pos = str1pos + str1chars;
    size_t str2chars;

    //printf("Starting pos for str2: %i\n", str1pos + str1chars);

    // Find str2
    do{

        str2chars = 0;

        while(str2[str2chars] == str[str2pos + str2chars] && str2[str2chars] != '\0')
        {
            //printf("Found str2 char: %i num: %i pos: %i \n", str2[str2chars], str2chars + 1, str2pos);
            ++str2chars;
        }

        ++str2pos;

    }while(str[str2pos] != '\0' && str2[str2chars] != '\0');

    --str2pos;

    //For testing:
    //printf("str2pos: %i str2chars: %i\n", str2pos, str2chars);

    if(!str2chars || str2[str2chars] != '\0')
    {
        //printf("Bailing from str2 result!\n");
        return '\0';
    }

    /* Trying to allocate strbetween with malloc. Is this correct? */
    char * strbetween = malloc(2);

    // Check if malloc succeeded:
    if (strbetween == '\0') return '\0';

    size_t tmp = 0;

    // Grab and store the string between!
    for(size_t i = str1pos + str1chars; i < str2pos; ++i)
    {
        strbetween[tmp] = str[i];
        ++tmp;
    }

    return strbetween;
}

int main() {

    char str[30]  = { "abaabbbaaaabbabbbaaabbb" };
    char str1[10] = { "aaa" };
    char str2[10] = { "bbb" };

    printf("Searching \'%s\' for \'%s\' and \'%s\'\n", str, str1, str2);
    printf("           0123456789\n\n"); // Easily see the elements
    printf("The word between is: \'%s\'\n", fast_strbetween(str, str1, str2));

    for(int i = 10000000; --i;)
        free(fast_strbetween(str, str1, str2));

    return 0;
}
根据Linux的“top”命令,进程使用了99.0-100%的CPU。 运行时使用的内存:1.8Mb 可执行文件大小:8336字节 在树莓皮3B+4 x 1.4Ghz的6臂上运行

/*
   Compile with:
   gcc -Wall -O3 fast_strbetween2.c -o fast_strbetween2

   Corrections and additions courtesy of:
   https://stackoverflow.com/questions/55308295/extracting-a-string-between-two-similar-or-different-strings-in-c-as-fast-as-p

*/

#include<stdio.h>  // printf
#include<stdlib.h> // malloc, free

// Strings now set to 'const'
char * fast_strbetween(const char *str, const char *str1, const char *str2)
{
    // string size will now be calculated by the characters picked up
    size_t str1pos    = 0;
    size_t str1chars;

    // Find str1
    do{

        str1chars = 0;

        // Will the do/while str1 check for '\0' suffice?
        // I haven't seen any issues yet, but not sure.
        while(str1[str1chars] == str[str1pos + str1chars]  && str1[str1chars] != '\0')
        {
            //printf("Found str1 char: %i num: %i pos: %i\n", str1[str1chars], str1chars + 1, str1pos);

            ++str1chars;
        }

        // Incrementing whilst not in conditional expression tested faster
        ++str1pos;

    /* There are two checks for "str1[str1chars] != '\0'". Trying to find
       another efficient way to do it in one. */
    }while(str[str1pos] != '\0' && str1[str1chars] != '\0');

    --str1pos;

    //For testing:
    //printf("str1pos: %i str1chars: %i\n", str1pos, str1chars);

    // exit if no chars were found or if didn't reach end of str1
    if(!str1chars || str1[str1chars] != '\0')
    {
        //printf("Bailing from str1 result\n");
        return '\0';
    }

    /* Got rid of the '+1' code which didn't allow for '' returns.
       I agree with your logic of <tag></tag> returning ''. */
    size_t str2pos = str1pos + str1chars;
    size_t str2chars;

    //printf("Starting pos for str2: %i\n", str1pos + str1chars);

    // Find str2
    do{

        str2chars = 0;

        while(str2[str2chars] == str[str2pos + str2chars] && str2[str2chars] != '\0')
        {
            //printf("Found str2 char: %i num: %i pos: %i \n", str2[str2chars], str2chars + 1, str2pos);
            ++str2chars;
        }

        ++str2pos;

    }while(str[str2pos] != '\0' && str2[str2chars] != '\0');

    --str2pos;

    //For testing:
    //printf("str2pos: %i str2chars: %i\n", str2pos, str2chars);

    if(!str2chars || str2[str2chars] != '\0')
    {
        //printf("Bailing from str2 result!\n");
        return '\0';
    }

    /* Trying to allocate strbetween with malloc. Is this correct? */
    char * strbetween = malloc(2);

    // Check if malloc succeeded:
    if (strbetween == '\0') return '\0';

    size_t tmp = 0;

    // Grab and store the string between!
    for(size_t i = str1pos + str1chars; i < str2pos; ++i)
    {
        strbetween[tmp] = str[i];
        ++tmp;
    }

    return strbetween;
}

int main() {

    char str[30]  = { "abaabbbaaaabbabbbaaabbb" };
    char str1[10] = { "aaa" };
    char str2[10] = { "bbb" };

    printf("Searching \'%s\' for \'%s\' and \'%s\'\n", str, str1, str2);
    printf("           0123456789\n\n"); // Easily see the elements
    printf("The word between is: \'%s\'\n", fast_strbetween(str, str1, str2));

    for(int i = 10000000; --i;)
        free(fast_strbetween(str, str1, str2));

    return 0;
}
*编辑*

/*
   Compile with:
   gcc -Wall -O3 fast_strbetween2.c -o fast_strbetween2

   Corrections and additions courtesy of:
   https://stackoverflow.com/questions/55308295/extracting-a-string-between-two-similar-or-different-strings-in-c-as-fast-as-p

*/

#include<stdio.h>  // printf
#include<stdlib.h> // malloc, free

// Strings now set to 'const'
char * fast_strbetween(const char *str, const char *str1, const char *str2)
{
    // string size will now be calculated by the characters picked up
    size_t str1pos    = 0;
    size_t str1chars;

    // Find str1
    do{

        str1chars = 0;

        // Will the do/while str1 check for '\0' suffice?
        // I haven't seen any issues yet, but not sure.
        while(str1[str1chars] == str[str1pos + str1chars]  && str1[str1chars] != '\0')
        {
            //printf("Found str1 char: %i num: %i pos: %i\n", str1[str1chars], str1chars + 1, str1pos);

            ++str1chars;
        }

        // Incrementing whilst not in conditional expression tested faster
        ++str1pos;

    /* There are two checks for "str1[str1chars] != '\0'". Trying to find
       another efficient way to do it in one. */
    }while(str[str1pos] != '\0' && str1[str1chars] != '\0');

    --str1pos;

    //For testing:
    //printf("str1pos: %i str1chars: %i\n", str1pos, str1chars);

    // exit if no chars were found or if didn't reach end of str1
    if(!str1chars || str1[str1chars] != '\0')
    {
        //printf("Bailing from str1 result\n");
        return '\0';
    }

    /* Got rid of the '+1' code which didn't allow for '' returns.
       I agree with your logic of <tag></tag> returning ''. */
    size_t str2pos = str1pos + str1chars;
    size_t str2chars;

    //printf("Starting pos for str2: %i\n", str1pos + str1chars);

    // Find str2
    do{

        str2chars = 0;

        while(str2[str2chars] == str[str2pos + str2chars] && str2[str2chars] != '\0')
        {
            //printf("Found str2 char: %i num: %i pos: %i \n", str2[str2chars], str2chars + 1, str2pos);
            ++str2chars;
        }

        ++str2pos;

    }while(str[str2pos] != '\0' && str2[str2chars] != '\0');

    --str2pos;

    //For testing:
    //printf("str2pos: %i str2chars: %i\n", str2pos, str2chars);

    if(!str2chars || str2[str2chars] != '\0')
    {
        //printf("Bailing from str2 result!\n");
        return '\0';
    }

    /* Trying to allocate strbetween with malloc. Is this correct? */
    char * strbetween = malloc(2);

    // Check if malloc succeeded:
    if (strbetween == '\0') return '\0';

    size_t tmp = 0;

    // Grab and store the string between!
    for(size_t i = str1pos + str1chars; i < str2pos; ++i)
    {
        strbetween[tmp] = str[i];
        ++tmp;
    }

    return strbetween;
}

int main() {

    char str[30]  = { "abaabbbaaaabbabbbaaabbb" };
    char str1[10] = { "aaa" };
    char str2[10] = { "bbb" };

    printf("Searching \'%s\' for \'%s\' and \'%s\'\n", str, str1, str2);
    printf("           0123456789\n\n"); // Easily see the elements
    printf("The word between is: \'%s\'\n", fast_strbetween(str, str1, str2));

    for(int i = 10000000; --i;)
        free(fast_strbetween(str, str1, str2));

    return 0;
}
这实际上不算,因为它不“返回”值,因此违反了我自己的规则,但它确实传递了一个变量,该变量被更改并带回main。它使用1个库运行,需要3.6秒。摆脱malloc是关键

/*
   Compile with:
   gcc -Wall -O3 fast_strbetween2.c -o fast_strbetween2

   Corrections and additions courtesy of:
   https://stackoverflow.com/questions/55308295/extracting-a-string-between-two-similar-or-different-strings-in-c-as-fast-as-p

*/

#include<stdio.h>  // printf
#include<stdlib.h> // malloc, free

// Strings now set to 'const'
char * fast_strbetween(const char *str, const char *str1, const char *str2)
{
    // string size will now be calculated by the characters picked up
    size_t str1pos    = 0;
    size_t str1chars;

    // Find str1
    do{

        str1chars = 0;

        // Will the do/while str1 check for '\0' suffice?
        // I haven't seen any issues yet, but not sure.
        while(str1[str1chars] == str[str1pos + str1chars]  && str1[str1chars] != '\0')
        {
            //printf("Found str1 char: %i num: %i pos: %i\n", str1[str1chars], str1chars + 1, str1pos);

            ++str1chars;
        }

        // Incrementing whilst not in conditional expression tested faster
        ++str1pos;

    /* There are two checks for "str1[str1chars] != '\0'". Trying to find
       another efficient way to do it in one. */
    }while(str[str1pos] != '\0' && str1[str1chars] != '\0');

    --str1pos;

    //For testing:
    //printf("str1pos: %i str1chars: %i\n", str1pos, str1chars);

    // exit if no chars were found or if didn't reach end of str1
    if(!str1chars || str1[str1chars] != '\0')
    {
        //printf("Bailing from str1 result\n");
        return '\0';
    }

    /* Got rid of the '+1' code which didn't allow for '' returns.
       I agree with your logic of <tag></tag> returning ''. */
    size_t str2pos = str1pos + str1chars;
    size_t str2chars;

    //printf("Starting pos for str2: %i\n", str1pos + str1chars);

    // Find str2
    do{

        str2chars = 0;

        while(str2[str2chars] == str[str2pos + str2chars] && str2[str2chars] != '\0')
        {
            //printf("Found str2 char: %i num: %i pos: %i \n", str2[str2chars], str2chars + 1, str2pos);
            ++str2chars;
        }

        ++str2pos;

    }while(str[str2pos] != '\0' && str2[str2chars] != '\0');

    --str2pos;

    //For testing:
    //printf("str2pos: %i str2chars: %i\n", str2pos, str2chars);

    if(!str2chars || str2[str2chars] != '\0')
    {
        //printf("Bailing from str2 result!\n");
        return '\0';
    }

    /* Trying to allocate strbetween with malloc. Is this correct? */
    char * strbetween = malloc(2);

    // Check if malloc succeeded:
    if (strbetween == '\0') return '\0';

    size_t tmp = 0;

    // Grab and store the string between!
    for(size_t i = str1pos + str1chars; i < str2pos; ++i)
    {
        strbetween[tmp] = str[i];
        ++tmp;
    }

    return strbetween;
}

int main() {

    char str[30]  = { "abaabbbaaaabbabbbaaabbb" };
    char str1[10] = { "aaa" };
    char str2[10] = { "bbb" };

    printf("Searching \'%s\' for \'%s\' and \'%s\'\n", str, str1, str2);
    printf("           0123456789\n\n"); // Easily see the elements
    printf("The word between is: \'%s\'\n", fast_strbetween(str, str1, str2));

    for(int i = 10000000; --i;)
        free(fast_strbetween(str, str1, str2));

    return 0;
}
/*

 gcc -Wall -O3 fast_strbetween.c -o fast_strbetween

*/

#include<stdio.h>  // printf

unsigned int fast_strbetween(const char *str, const char *str1, const char *str2, char *strbetween)
{
    const char *sbegin = &str1[0];    // String beginning
    const char *spos;

    // Find str1
    do{

        spos = str;
        str1 = sbegin;

        while(*spos == *str1 && *str1)
        {
            ++spos;
            ++str1;
        }

        ++str;

    }while(*str1 && *spos); 

    // Nothing found if spos hasn't advanced
    if (spos == str)
    {
        strbetween[0] = '\0';
        return 0;
    }

    str = spos;
    sbegin = &str2[0];     // Recycle sbegin

    // Find str2
    do{

        str2 = sbegin;
        spos = str;

        while(*spos == *str2 && *str2)
        {
            ++str2;
            ++spos;
        }

        *strbetween = *str;
        ++strbetween;
        ++str;

    }while(*str2 && *spos);

    if (spos == str)
    {
        strbetween[0] = '\0';
        return 0;
    }

    *--strbetween = '\0';

    return 1;  // Successful (found text)
}

int main() {

    char s[100]  = "abaabbbaaaabbabbbaaabbb";
    char s1[100] = "aaa";
    char s2[100] = "bbb";
    char sret[100];

    fast_strbetween(s, s1, s2, sret);
    printf("String: %s\n", sret);

    for(int i = 10000000; --i; )
      fast_strbetween(s, s1, s2, sret);

    return 0;
}

您的代码存在多个问题,可能没有应有的效率:

/*
   Compile with:
   gcc -Wall -O3 fast_strbetween2.c -o fast_strbetween2

   Corrections and additions courtesy of:
   https://stackoverflow.com/questions/55308295/extracting-a-string-between-two-similar-or-different-strings-in-c-as-fast-as-p

*/

#include<stdio.h>  // printf
#include<stdlib.h> // malloc, free

// Strings now set to 'const'
char * fast_strbetween(const char *str, const char *str1, const char *str2)
{
    // string size will now be calculated by the characters picked up
    size_t str1pos    = 0;
    size_t str1chars;

    // Find str1
    do{

        str1chars = 0;

        // Will the do/while str1 check for '\0' suffice?
        // I haven't seen any issues yet, but not sure.
        while(str1[str1chars] == str[str1pos + str1chars]  && str1[str1chars] != '\0')
        {
            //printf("Found str1 char: %i num: %i pos: %i\n", str1[str1chars], str1chars + 1, str1pos);

            ++str1chars;
        }

        // Incrementing whilst not in conditional expression tested faster
        ++str1pos;

    /* There are two checks for "str1[str1chars] != '\0'". Trying to find
       another efficient way to do it in one. */
    }while(str[str1pos] != '\0' && str1[str1chars] != '\0');

    --str1pos;

    //For testing:
    //printf("str1pos: %i str1chars: %i\n", str1pos, str1chars);

    // exit if no chars were found or if didn't reach end of str1
    if(!str1chars || str1[str1chars] != '\0')
    {
        //printf("Bailing from str1 result\n");
        return '\0';
    }

    /* Got rid of the '+1' code which didn't allow for '' returns.
       I agree with your logic of <tag></tag> returning ''. */
    size_t str2pos = str1pos + str1chars;
    size_t str2chars;

    //printf("Starting pos for str2: %i\n", str1pos + str1chars);

    // Find str2
    do{

        str2chars = 0;

        while(str2[str2chars] == str[str2pos + str2chars] && str2[str2chars] != '\0')
        {
            //printf("Found str2 char: %i num: %i pos: %i \n", str2[str2chars], str2chars + 1, str2pos);
            ++str2chars;
        }

        ++str2pos;

    }while(str[str2pos] != '\0' && str2[str2chars] != '\0');

    --str2pos;

    //For testing:
    //printf("str2pos: %i str2chars: %i\n", str2pos, str2chars);

    if(!str2chars || str2[str2chars] != '\0')
    {
        //printf("Bailing from str2 result!\n");
        return '\0';
    }

    /* Trying to allocate strbetween with malloc. Is this correct? */
    char * strbetween = malloc(2);

    // Check if malloc succeeded:
    if (strbetween == '\0') return '\0';

    size_t tmp = 0;

    // Grab and store the string between!
    for(size_t i = str1pos + str1chars; i < str2pos; ++i)
    {
        strbetween[tmp] = str[i];
        ++tmp;
    }

    return strbetween;
}

int main() {

    char str[30]  = { "abaabbbaaaabbabbbaaabbb" };
    char str1[10] = { "aaa" };
    char str2[10] = { "bbb" };

    printf("Searching \'%s\' for \'%s\' and \'%s\'\n", str, str1, str2);
    printf("           0123456789\n\n"); // Easily see the elements
    printf("The word between is: \'%s\'\n", fast_strbetween(str, str1, str2));

    for(int i = 10000000; --i;)
        free(fast_strbetween(str, str1, str2));

    return 0;
}
在字符串中使用int和unsigned int类型作为索引。这些类型可能小于尺寸范围。您应该修改代码以使用size\t,并避免在比较中混合使用有符号和无符号类型

/*
   Compile with:
   gcc -Wall -O3 fast_strbetween2.c -o fast_strbetween2

   Corrections and additions courtesy of:
   https://stackoverflow.com/questions/55308295/extracting-a-string-between-two-similar-or-different-strings-in-c-as-fast-as-p

*/

#include<stdio.h>  // printf
#include<stdlib.h> // malloc, free

// Strings now set to 'const'
char * fast_strbetween(const char *str, const char *str1, const char *str2)
{
    // string size will now be calculated by the characters picked up
    size_t str1pos    = 0;
    size_t str1chars;

    // Find str1
    do{

        str1chars = 0;

        // Will the do/while str1 check for '\0' suffice?
        // I haven't seen any issues yet, but not sure.
        while(str1[str1chars] == str[str1pos + str1chars]  && str1[str1chars] != '\0')
        {
            //printf("Found str1 char: %i num: %i pos: %i\n", str1[str1chars], str1chars + 1, str1pos);

            ++str1chars;
        }

        // Incrementing whilst not in conditional expression tested faster
        ++str1pos;

    /* There are two checks for "str1[str1chars] != '\0'". Trying to find
       another efficient way to do it in one. */
    }while(str[str1pos] != '\0' && str1[str1chars] != '\0');

    --str1pos;

    //For testing:
    //printf("str1pos: %i str1chars: %i\n", str1pos, str1chars);

    // exit if no chars were found or if didn't reach end of str1
    if(!str1chars || str1[str1chars] != '\0')
    {
        //printf("Bailing from str1 result\n");
        return '\0';
    }

    /* Got rid of the '+1' code which didn't allow for '' returns.
       I agree with your logic of <tag></tag> returning ''. */
    size_t str2pos = str1pos + str1chars;
    size_t str2chars;

    //printf("Starting pos for str2: %i\n", str1pos + str1chars);

    // Find str2
    do{

        str2chars = 0;

        while(str2[str2chars] == str[str2pos + str2chars] && str2[str2chars] != '\0')
        {
            //printf("Found str2 char: %i num: %i pos: %i \n", str2[str2chars], str2chars + 1, str2pos);
            ++str2chars;
        }

        ++str2pos;

    }while(str[str2pos] != '\0' && str2[str2chars] != '\0');

    --str2pos;

    //For testing:
    //printf("str2pos: %i str2chars: %i\n", str2pos, str2chars);

    if(!str2chars || str2[str2chars] != '\0')
    {
        //printf("Bailing from str2 result!\n");
        return '\0';
    }

    /* Trying to allocate strbetween with malloc. Is this correct? */
    char * strbetween = malloc(2);

    // Check if malloc succeeded:
    if (strbetween == '\0') return '\0';

    size_t tmp = 0;

    // Grab and store the string between!
    for(size_t i = str1pos + str1chars; i < str2pos; ++i)
    {
        strbetween[tmp] = str[i];
        ++tmp;
    }

    return strbetween;
}

int main() {

    char str[30]  = { "abaabbbaaaabbabbbaaabbb" };
    char str1[10] = { "aaa" };
    char str2[10] = { "bbb" };

    printf("Searching \'%s\' for \'%s\' and \'%s\'\n", str, str1, str2);
    printf("           0123456789\n\n"); // Easily see the elements
    printf("The word between is: \'%s\'\n", fast_strbetween(str, str1, str2));

    for(int i = 10000000; --i;)
        free(fast_strbetween(str, str1, str2));

    return 0;
}
函数的字符串参数应该声明为const char*,因为您不修改字符串,并且应该能够 在没有警告的情况下传递常量字符串

/*
   Compile with:
   gcc -Wall -O3 fast_strbetween2.c -o fast_strbetween2

   Corrections and additions courtesy of:
   https://stackoverflow.com/questions/55308295/extracting-a-string-between-two-similar-or-different-strings-in-c-as-fast-as-p

*/

#include<stdio.h>  // printf
#include<stdlib.h> // malloc, free

// Strings now set to 'const'
char * fast_strbetween(const char *str, const char *str1, const char *str2)
{
    // string size will now be calculated by the characters picked up
    size_t str1pos    = 0;
    size_t str1chars;

    // Find str1
    do{

        str1chars = 0;

        // Will the do/while str1 check for '\0' suffice?
        // I haven't seen any issues yet, but not sure.
        while(str1[str1chars] == str[str1pos + str1chars]  && str1[str1chars] != '\0')
        {
            //printf("Found str1 char: %i num: %i pos: %i\n", str1[str1chars], str1chars + 1, str1pos);

            ++str1chars;
        }

        // Incrementing whilst not in conditional expression tested faster
        ++str1pos;

    /* There are two checks for "str1[str1chars] != '\0'". Trying to find
       another efficient way to do it in one. */
    }while(str[str1pos] != '\0' && str1[str1chars] != '\0');

    --str1pos;

    //For testing:
    //printf("str1pos: %i str1chars: %i\n", str1pos, str1chars);

    // exit if no chars were found or if didn't reach end of str1
    if(!str1chars || str1[str1chars] != '\0')
    {
        //printf("Bailing from str1 result\n");
        return '\0';
    }

    /* Got rid of the '+1' code which didn't allow for '' returns.
       I agree with your logic of <tag></tag> returning ''. */
    size_t str2pos = str1pos + str1chars;
    size_t str2chars;

    //printf("Starting pos for str2: %i\n", str1pos + str1chars);

    // Find str2
    do{

        str2chars = 0;

        while(str2[str2chars] == str[str2pos + str2chars] && str2[str2chars] != '\0')
        {
            //printf("Found str2 char: %i num: %i pos: %i \n", str2[str2chars], str2chars + 1, str2pos);
            ++str2chars;
        }

        ++str2pos;

    }while(str[str2pos] != '\0' && str2[str2chars] != '\0');

    --str2pos;

    //For testing:
    //printf("str2pos: %i str2chars: %i\n", str2pos, str2chars);

    if(!str2chars || str2[str2chars] != '\0')
    {
        //printf("Bailing from str2 result!\n");
        return '\0';
    }

    /* Trying to allocate strbetween with malloc. Is this correct? */
    char * strbetween = malloc(2);

    // Check if malloc succeeded:
    if (strbetween == '\0') return '\0';

    size_t tmp = 0;

    // Grab and store the string between!
    for(size_t i = str1pos + str1chars; i < str2pos; ++i)
    {
        strbetween[tmp] = str[i];
        ++tmp;
    }

    return strbetween;
}

int main() {

    char str[30]  = { "abaabbbaaaabbabbbaaabbb" };
    char str1[10] = { "aaa" };
    char str2[10] = { "bbb" };

    printf("Searching \'%s\' for \'%s\' and \'%s\'\n", str, str1, str2);
    printf("           0123456789\n\n"); // Easily see the elements
    printf("The word between is: \'%s\'\n", fast_strbetween(str, str1, str2));

    for(int i = 10000000; --i;)
        free(fast_strbetween(str, str1, str2));

    return 0;
}
重新定义strlen是个坏主意:您的版本将比系统的优化、汇编编码和很可能的内联版本慢

/*
   Compile with:
   gcc -Wall -O3 fast_strbetween2.c -o fast_strbetween2

   Corrections and additions courtesy of:
   https://stackoverflow.com/questions/55308295/extracting-a-string-between-two-similar-or-different-strings-in-c-as-fast-as-p

*/

#include<stdio.h>  // printf
#include<stdlib.h> // malloc, free

// Strings now set to 'const'
char * fast_strbetween(const char *str, const char *str1, const char *str2)
{
    // string size will now be calculated by the characters picked up
    size_t str1pos    = 0;
    size_t str1chars;

    // Find str1
    do{

        str1chars = 0;

        // Will the do/while str1 check for '\0' suffice?
        // I haven't seen any issues yet, but not sure.
        while(str1[str1chars] == str[str1pos + str1chars]  && str1[str1chars] != '\0')
        {
            //printf("Found str1 char: %i num: %i pos: %i\n", str1[str1chars], str1chars + 1, str1pos);

            ++str1chars;
        }

        // Incrementing whilst not in conditional expression tested faster
        ++str1pos;

    /* There are two checks for "str1[str1chars] != '\0'". Trying to find
       another efficient way to do it in one. */
    }while(str[str1pos] != '\0' && str1[str1chars] != '\0');

    --str1pos;

    //For testing:
    //printf("str1pos: %i str1chars: %i\n", str1pos, str1chars);

    // exit if no chars were found or if didn't reach end of str1
    if(!str1chars || str1[str1chars] != '\0')
    {
        //printf("Bailing from str1 result\n");
        return '\0';
    }

    /* Got rid of the '+1' code which didn't allow for '' returns.
       I agree with your logic of <tag></tag> returning ''. */
    size_t str2pos = str1pos + str1chars;
    size_t str2chars;

    //printf("Starting pos for str2: %i\n", str1pos + str1chars);

    // Find str2
    do{

        str2chars = 0;

        while(str2[str2chars] == str[str2pos + str2chars] && str2[str2chars] != '\0')
        {
            //printf("Found str2 char: %i num: %i pos: %i \n", str2[str2chars], str2chars + 1, str2pos);
            ++str2chars;
        }

        ++str2pos;

    }while(str[str2pos] != '\0' && str2[str2chars] != '\0');

    --str2pos;

    //For testing:
    //printf("str2pos: %i str2chars: %i\n", str2pos, str2chars);

    if(!str2chars || str2[str2chars] != '\0')
    {
        //printf("Bailing from str2 result!\n");
        return '\0';
    }

    /* Trying to allocate strbetween with malloc. Is this correct? */
    char * strbetween = malloc(2);

    // Check if malloc succeeded:
    if (strbetween == '\0') return '\0';

    size_t tmp = 0;

    // Grab and store the string between!
    for(size_t i = str1pos + str1chars; i < str2pos; ++i)
    {
        strbetween[tmp] = str[i];
        ++tmp;
    }

    return strbetween;
}

int main() {

    char str[30]  = { "abaabbbaaaabbabbbaaabbb" };
    char str1[10] = { "aaa" };
    char str2[10] = { "bbb" };

    printf("Searching \'%s\' for \'%s\' and \'%s\'\n", str, str1, str2);
    printf("           0123456789\n\n"); // Easily see the elements
    printf("The word between is: \'%s\'\n", fast_strbetween(str, str1, str2));

    for(int i = 10000000; --i;)
        free(fast_strbetween(str, str1, str2));

    return 0;
}
计算str的长度是不必要的,而且可能成本高昂:str1和str2都可能出现在str的开头,扫描str的结尾将是浪费

/*
   Compile with:
   gcc -Wall -O3 fast_strbetween2.c -o fast_strbetween2

   Corrections and additions courtesy of:
   https://stackoverflow.com/questions/55308295/extracting-a-string-between-two-similar-or-different-strings-in-c-as-fast-as-p

*/

#include<stdio.h>  // printf
#include<stdlib.h> // malloc, free

// Strings now set to 'const'
char * fast_strbetween(const char *str, const char *str1, const char *str2)
{
    // string size will now be calculated by the characters picked up
    size_t str1pos    = 0;
    size_t str1chars;

    // Find str1
    do{

        str1chars = 0;

        // Will the do/while str1 check for '\0' suffice?
        // I haven't seen any issues yet, but not sure.
        while(str1[str1chars] == str[str1pos + str1chars]  && str1[str1chars] != '\0')
        {
            //printf("Found str1 char: %i num: %i pos: %i\n", str1[str1chars], str1chars + 1, str1pos);

            ++str1chars;
        }

        // Incrementing whilst not in conditional expression tested faster
        ++str1pos;

    /* There are two checks for "str1[str1chars] != '\0'". Trying to find
       another efficient way to do it in one. */
    }while(str[str1pos] != '\0' && str1[str1chars] != '\0');

    --str1pos;

    //For testing:
    //printf("str1pos: %i str1chars: %i\n", str1pos, str1chars);

    // exit if no chars were found or if didn't reach end of str1
    if(!str1chars || str1[str1chars] != '\0')
    {
        //printf("Bailing from str1 result\n");
        return '\0';
    }

    /* Got rid of the '+1' code which didn't allow for '' returns.
       I agree with your logic of <tag></tag> returning ''. */
    size_t str2pos = str1pos + str1chars;
    size_t str2chars;

    //printf("Starting pos for str2: %i\n", str1pos + str1chars);

    // Find str2
    do{

        str2chars = 0;

        while(str2[str2chars] == str[str2pos + str2chars] && str2[str2chars] != '\0')
        {
            //printf("Found str2 char: %i num: %i pos: %i \n", str2[str2chars], str2chars + 1, str2pos);
            ++str2chars;
        }

        ++str2pos;

    }while(str[str2pos] != '\0' && str2[str2chars] != '\0');

    --str2pos;

    //For testing:
    //printf("str2pos: %i str2chars: %i\n", str2pos, str2chars);

    if(!str2chars || str2[str2chars] != '\0')
    {
        //printf("Bailing from str2 result!\n");
        return '\0';
    }

    /* Trying to allocate strbetween with malloc. Is this correct? */
    char * strbetween = malloc(2);

    // Check if malloc succeeded:
    if (strbetween == '\0') return '\0';

    size_t tmp = 0;

    // Grab and store the string between!
    for(size_t i = str1pos + str1chars; i < str2pos; ++i)
    {
        strbetween[tmp] = str[i];
        ++tmp;
    }

    return strbetween;
}

int main() {

    char str[30]  = { "abaabbbaaaabbabbbaaabbb" };
    char str1[10] = { "aaa" };
    char str2[10] = { "bbb" };

    printf("Searching \'%s\' for \'%s\' and \'%s\'\n", str, str1, str2);
    printf("           0123456789\n\n"); // Easily see the elements
    printf("The word between is: \'%s\'\n", fast_strbetween(str, str1, str2));

    for(int i = 10000000; --i;)
        free(fast_strbetween(str, str1, str2));

    return 0;
}
第一个do/while循环中的while循环不正确:whilestr1[charsfound]==str[str1pos+charsfound]charsfound++;可能会访问str和str1结尾以外的字符,因为循环不会在空终止符处停止。如果str1仅出现在str的末尾,则表示行为未定义

/*
   Compile with:
   gcc -Wall -O3 fast_strbetween2.c -o fast_strbetween2

   Corrections and additions courtesy of:
   https://stackoverflow.com/questions/55308295/extracting-a-string-between-two-similar-or-different-strings-in-c-as-fast-as-p

*/

#include<stdio.h>  // printf
#include<stdlib.h> // malloc, free

// Strings now set to 'const'
char * fast_strbetween(const char *str, const char *str1, const char *str2)
{
    // string size will now be calculated by the characters picked up
    size_t str1pos    = 0;
    size_t str1chars;

    // Find str1
    do{

        str1chars = 0;

        // Will the do/while str1 check for '\0' suffice?
        // I haven't seen any issues yet, but not sure.
        while(str1[str1chars] == str[str1pos + str1chars]  && str1[str1chars] != '\0')
        {
            //printf("Found str1 char: %i num: %i pos: %i\n", str1[str1chars], str1chars + 1, str1pos);

            ++str1chars;
        }

        // Incrementing whilst not in conditional expression tested faster
        ++str1pos;

    /* There are two checks for "str1[str1chars] != '\0'". Trying to find
       another efficient way to do it in one. */
    }while(str[str1pos] != '\0' && str1[str1chars] != '\0');

    --str1pos;

    //For testing:
    //printf("str1pos: %i str1chars: %i\n", str1pos, str1chars);

    // exit if no chars were found or if didn't reach end of str1
    if(!str1chars || str1[str1chars] != '\0')
    {
        //printf("Bailing from str1 result\n");
        return '\0';
    }

    /* Got rid of the '+1' code which didn't allow for '' returns.
       I agree with your logic of <tag></tag> returning ''. */
    size_t str2pos = str1pos + str1chars;
    size_t str2chars;

    //printf("Starting pos for str2: %i\n", str1pos + str1chars);

    // Find str2
    do{

        str2chars = 0;

        while(str2[str2chars] == str[str2pos + str2chars] && str2[str2chars] != '\0')
        {
            //printf("Found str2 char: %i num: %i pos: %i \n", str2[str2chars], str2chars + 1, str2pos);
            ++str2chars;
        }

        ++str2pos;

    }while(str[str2pos] != '\0' && str2[str2chars] != '\0');

    --str2pos;

    //For testing:
    //printf("str2pos: %i str2chars: %i\n", str2pos, str2chars);

    if(!str2chars || str2[str2chars] != '\0')
    {
        //printf("Bailing from str2 result!\n");
        return '\0';
    }

    /* Trying to allocate strbetween with malloc. Is this correct? */
    char * strbetween = malloc(2);

    // Check if malloc succeeded:
    if (strbetween == '\0') return '\0';

    size_t tmp = 0;

    // Grab and store the string between!
    for(size_t i = str1pos + str1chars; i < str2pos; ++i)
    {
        strbetween[tmp] = str[i];
        ++tmp;
    }

    return strbetween;
}

int main() {

    char str[30]  = { "abaabbbaaaabbabbbaaabbb" };
    char str1[10] = { "aaa" };
    char str2[10] = { "bbb" };

    printf("Searching \'%s\' for \'%s\' and \'%s\'\n", str, str1, str2);
    printf("           0123456789\n\n"); // Easily see the elements
    printf("The word between is: \'%s\'\n", fast_strbetween(str, str1, str2));

    for(int i = 10000000; --i;)
        free(fast_strbetween(str, str1, str2));

    return 0;
}
如果str1是空字符串,您将在str的末尾而不是开头找到它

/*
   Compile with:
   gcc -Wall -O3 fast_strbetween2.c -o fast_strbetween2

   Corrections and additions courtesy of:
   https://stackoverflow.com/questions/55308295/extracting-a-string-between-two-similar-or-different-strings-in-c-as-fast-as-p

*/

#include<stdio.h>  // printf
#include<stdlib.h> // malloc, free

// Strings now set to 'const'
char * fast_strbetween(const char *str, const char *str1, const char *str2)
{
    // string size will now be calculated by the characters picked up
    size_t str1pos    = 0;
    size_t str1chars;

    // Find str1
    do{

        str1chars = 0;

        // Will the do/while str1 check for '\0' suffice?
        // I haven't seen any issues yet, but not sure.
        while(str1[str1chars] == str[str1pos + str1chars]  && str1[str1chars] != '\0')
        {
            //printf("Found str1 char: %i num: %i pos: %i\n", str1[str1chars], str1chars + 1, str1pos);

            ++str1chars;
        }

        // Incrementing whilst not in conditional expression tested faster
        ++str1pos;

    /* There are two checks for "str1[str1chars] != '\0'". Trying to find
       another efficient way to do it in one. */
    }while(str[str1pos] != '\0' && str1[str1chars] != '\0');

    --str1pos;

    //For testing:
    //printf("str1pos: %i str1chars: %i\n", str1pos, str1chars);

    // exit if no chars were found or if didn't reach end of str1
    if(!str1chars || str1[str1chars] != '\0')
    {
        //printf("Bailing from str1 result\n");
        return '\0';
    }

    /* Got rid of the '+1' code which didn't allow for '' returns.
       I agree with your logic of <tag></tag> returning ''. */
    size_t str2pos = str1pos + str1chars;
    size_t str2chars;

    //printf("Starting pos for str2: %i\n", str1pos + str1chars);

    // Find str2
    do{

        str2chars = 0;

        while(str2[str2chars] == str[str2pos + str2chars] && str2[str2chars] != '\0')
        {
            //printf("Found str2 char: %i num: %i pos: %i \n", str2[str2chars], str2chars + 1, str2pos);
            ++str2chars;
        }

        ++str2pos;

    }while(str[str2pos] != '\0' && str2[str2chars] != '\0');

    --str2pos;

    //For testing:
    //printf("str2pos: %i str2chars: %i\n", str2pos, str2chars);

    if(!str2chars || str2[str2chars] != '\0')
    {
        //printf("Bailing from str2 result!\n");
        return '\0';
    }

    /* Trying to allocate strbetween with malloc. Is this correct? */
    char * strbetween = malloc(2);

    // Check if malloc succeeded:
    if (strbetween == '\0') return '\0';

    size_t tmp = 0;

    // Grab and store the string between!
    for(size_t i = str1pos + str1chars; i < str2pos; ++i)
    {
        strbetween[tmp] = str[i];
        ++tmp;
    }

    return strbetween;
}

int main() {

    char str[30]  = { "abaabbbaaaabbabbbaaabbb" };
    char str1[10] = { "aaa" };
    char str2[10] = { "bbb" };

    printf("Searching \'%s\' for \'%s\' and \'%s\'\n", str, str1, str2);
    printf("           0123456789\n\n"); // Easily see the elements
    printf("The word between is: \'%s\'\n", fast_strbetween(str, str1, str2));

    for(int i = 10000000; --i;)
        free(fast_strbetween(str, str1, str2));

    return 0;
}
为什么要将str2pos初始化为int str2pos=str1pos+str1len+1;?如果str中str2紧跟在str1之后,则应分配并返回一个空字符串。你对这个案例的评论是不可读的,你应该打断这么长的行以适应典型的屏幕宽度,比如80列。在AA、a、a之间的STRB是否应返回或为空仍有争议。IMHO它应该返回一个分配的空字符串,该字符串将与strbetween或strbetween,“,”上的预期行为一致。您的规范阻止strbetween返回空字符串会产生一个违反直觉的边框大小写

/*
   Compile with:
   gcc -Wall -O3 fast_strbetween2.c -o fast_strbetween2

   Corrections and additions courtesy of:
   https://stackoverflow.com/questions/55308295/extracting-a-string-between-two-similar-or-different-strings-in-c-as-fast-as-p

*/

#include<stdio.h>  // printf
#include<stdlib.h> // malloc, free

// Strings now set to 'const'
char * fast_strbetween(const char *str, const char *str1, const char *str2)
{
    // string size will now be calculated by the characters picked up
    size_t str1pos    = 0;
    size_t str1chars;

    // Find str1
    do{

        str1chars = 0;

        // Will the do/while str1 check for '\0' suffice?
        // I haven't seen any issues yet, but not sure.
        while(str1[str1chars] == str[str1pos + str1chars]  && str1[str1chars] != '\0')
        {
            //printf("Found str1 char: %i num: %i pos: %i\n", str1[str1chars], str1chars + 1, str1pos);

            ++str1chars;
        }

        // Incrementing whilst not in conditional expression tested faster
        ++str1pos;

    /* There are two checks for "str1[str1chars] != '\0'". Trying to find
       another efficient way to do it in one. */
    }while(str[str1pos] != '\0' && str1[str1chars] != '\0');

    --str1pos;

    //For testing:
    //printf("str1pos: %i str1chars: %i\n", str1pos, str1chars);

    // exit if no chars were found or if didn't reach end of str1
    if(!str1chars || str1[str1chars] != '\0')
    {
        //printf("Bailing from str1 result\n");
        return '\0';
    }

    /* Got rid of the '+1' code which didn't allow for '' returns.
       I agree with your logic of <tag></tag> returning ''. */
    size_t str2pos = str1pos + str1chars;
    size_t str2chars;

    //printf("Starting pos for str2: %i\n", str1pos + str1chars);

    // Find str2
    do{

        str2chars = 0;

        while(str2[str2chars] == str[str2pos + str2chars] && str2[str2chars] != '\0')
        {
            //printf("Found str2 char: %i num: %i pos: %i \n", str2[str2chars], str2chars + 1, str2pos);
            ++str2chars;
        }

        ++str2pos;

    }while(str[str2pos] != '\0' && str2[str2chars] != '\0');

    --str2pos;

    //For testing:
    //printf("str2pos: %i str2chars: %i\n", str2pos, str2chars);

    if(!str2chars || str2[str2chars] != '\0')
    {
        //printf("Bailing from str2 result!\n");
        return '\0';
    }

    /* Trying to allocate strbetween with malloc. Is this correct? */
    char * strbetween = malloc(2);

    // Check if malloc succeeded:
    if (strbetween == '\0') return '\0';

    size_t tmp = 0;

    // Grab and store the string between!
    for(size_t i = str1pos + str1chars; i < str2pos; ++i)
    {
        strbetween[tmp] = str[i];
        ++tmp;
    }

    return strbetween;
}

int main() {

    char str[30]  = { "abaabbbaaaabbabbbaaabbb" };
    char str1[10] = { "aaa" };
    char str2[10] = { "bbb" };

    printf("Searching \'%s\' for \'%s\' and \'%s\'\n", str, str1, str2);
    printf("           0123456789\n\n"); // Easily see the elements
    printf("The word between is: \'%s\'\n", fast_strbetween(str, str1, str2));

    for(int i = 10000000; --i;)
        free(fast_strbetween(str, str1, str2));

    return 0;
}
第二个扫描循环与第一个扫描循环存在相同的问题

/*
   Compile with:
   gcc -Wall -O3 fast_strbetween2.c -o fast_strbetween2

   Corrections and additions courtesy of:
   https://stackoverflow.com/questions/55308295/extracting-a-string-between-two-similar-or-different-strings-in-c-as-fast-as-p

*/

#include<stdio.h>  // printf
#include<stdlib.h> // malloc, free

// Strings now set to 'const'
char * fast_strbetween(const char *str, const char *str1, const char *str2)
{
    // string size will now be calculated by the characters picked up
    size_t str1pos    = 0;
    size_t str1chars;

    // Find str1
    do{

        str1chars = 0;

        // Will the do/while str1 check for '\0' suffice?
        // I haven't seen any issues yet, but not sure.
        while(str1[str1chars] == str[str1pos + str1chars]  && str1[str1chars] != '\0')
        {
            //printf("Found str1 char: %i num: %i pos: %i\n", str1[str1chars], str1chars + 1, str1pos);

            ++str1chars;
        }

        // Incrementing whilst not in conditional expression tested faster
        ++str1pos;

    /* There are two checks for "str1[str1chars] != '\0'". Trying to find
       another efficient way to do it in one. */
    }while(str[str1pos] != '\0' && str1[str1chars] != '\0');

    --str1pos;

    //For testing:
    //printf("str1pos: %i str1chars: %i\n", str1pos, str1chars);

    // exit if no chars were found or if didn't reach end of str1
    if(!str1chars || str1[str1chars] != '\0')
    {
        //printf("Bailing from str1 result\n");
        return '\0';
    }

    /* Got rid of the '+1' code which didn't allow for '' returns.
       I agree with your logic of <tag></tag> returning ''. */
    size_t str2pos = str1pos + str1chars;
    size_t str2chars;

    //printf("Starting pos for str2: %i\n", str1pos + str1chars);

    // Find str2
    do{

        str2chars = 0;

        while(str2[str2chars] == str[str2pos + str2chars] && str2[str2chars] != '\0')
        {
            //printf("Found str2 char: %i num: %i pos: %i \n", str2[str2chars], str2chars + 1, str2pos);
            ++str2chars;
        }

        ++str2pos;

    }while(str[str2pos] != '\0' && str2[str2chars] != '\0');

    --str2pos;

    //For testing:
    //printf("str2pos: %i str2chars: %i\n", str2pos, str2chars);

    if(!str2chars || str2[str2chars] != '\0')
    {
        //printf("Bailing from str2 result!\n");
        return '\0';
    }

    /* Trying to allocate strbetween with malloc. Is this correct? */
    char * strbetween = malloc(2);

    // Check if malloc succeeded:
    if (strbetween == '\0') return '\0';

    size_t tmp = 0;

    // Grab and store the string between!
    for(size_t i = str1pos + str1chars; i < str2pos; ++i)
    {
        strbetween[tmp] = str[i];
        ++tmp;
    }

    return strbetween;
}

int main() {

    char str[30]  = { "abaabbbaaaabbabbbaaabbb" };
    char str1[10] = { "aaa" };
    char str2[10] = { "bbb" };

    printf("Searching \'%s\' for \'%s\' and \'%s\'\n", str, str1, str2);
    printf("           0123456789\n\n"); // Easily see the elements
    printf("The word between is: \'%s\'\n", fast_strbetween(str, str1, str2));

    for(int i = 10000000; --i;)
        free(fast_strbetween(str, str1, str2));

    return 0;
}
行char*strbetween=char*mallocsizeofchar*str2pos-str1pos-str1len;存在多个问题:在C中不需要强制转换,如果坚持指定元素大小sizeofchar(定义为1),则应将元素数括起来,最后但并非最不重要的一点是,必须为空终止符分配一个额外的元素

/*
   Compile with:
   gcc -Wall -O3 fast_strbetween2.c -o fast_strbetween2

   Corrections and additions courtesy of:
   https://stackoverflow.com/questions/55308295/extracting-a-string-between-two-similar-or-different-strings-in-c-as-fast-as-p

*/

#include<stdio.h>  // printf
#include<stdlib.h> // malloc, free

// Strings now set to 'const'
char * fast_strbetween(const char *str, const char *str1, const char *str2)
{
    // string size will now be calculated by the characters picked up
    size_t str1pos    = 0;
    size_t str1chars;

    // Find str1
    do{

        str1chars = 0;

        // Will the do/while str1 check for '\0' suffice?
        // I haven't seen any issues yet, but not sure.
        while(str1[str1chars] == str[str1pos + str1chars]  && str1[str1chars] != '\0')
        {
            //printf("Found str1 char: %i num: %i pos: %i\n", str1[str1chars], str1chars + 1, str1pos);

            ++str1chars;
        }

        // Incrementing whilst not in conditional expression tested faster
        ++str1pos;

    /* There are two checks for "str1[str1chars] != '\0'". Trying to find
       another efficient way to do it in one. */
    }while(str[str1pos] != '\0' && str1[str1chars] != '\0');

    --str1pos;

    //For testing:
    //printf("str1pos: %i str1chars: %i\n", str1pos, str1chars);

    // exit if no chars were found or if didn't reach end of str1
    if(!str1chars || str1[str1chars] != '\0')
    {
        //printf("Bailing from str1 result\n");
        return '\0';
    }

    /* Got rid of the '+1' code which didn't allow for '' returns.
       I agree with your logic of <tag></tag> returning ''. */
    size_t str2pos = str1pos + str1chars;
    size_t str2chars;

    //printf("Starting pos for str2: %i\n", str1pos + str1chars);

    // Find str2
    do{

        str2chars = 0;

        while(str2[str2chars] == str[str2pos + str2chars] && str2[str2chars] != '\0')
        {
            //printf("Found str2 char: %i num: %i pos: %i \n", str2[str2chars], str2chars + 1, str2pos);
            ++str2chars;
        }

        ++str2pos;

    }while(str[str2pos] != '\0' && str2[str2chars] != '\0');

    --str2pos;

    //For testing:
    //printf("str2pos: %i str2chars: %i\n", str2pos, str2chars);

    if(!str2chars || str2[str2chars] != '\0')
    {
        //printf("Bailing from str2 result!\n");
        return '\0';
    }

    /* Trying to allocate strbetween with malloc. Is this correct? */
    char * strbetween = malloc(2);

    // Check if malloc succeeded:
    if (strbetween == '\0') return '\0';

    size_t tmp = 0;

    // Grab and store the string between!
    for(size_t i = str1pos + str1chars; i < str2pos; ++i)
    {
        strbetween[tmp] = str[i];
        ++tmp;
    }

    return strbetween;
}

int main() {

    char str[30]  = { "abaabbbaaaabbabbbaaabbb" };
    char str1[10] = { "aaa" };
    char str2[10] = { "bbb" };

    printf("Searching \'%s\' for \'%s\' and \'%s\'\n", str, str1, str2);
    printf("           0123456789\n\n"); // Easily see the elements
    printf("The word between is: \'%s\'\n", fast_strbetween(str, str1, str2));

    for(int i = 10000000; --i;)
        free(fast_strbetween(str, str1, str2));

    return 0;
}
不测试malloc是否成功。如果它返回NULL,您将有未定义的行为,而您应该只返回NULL

/*
   Compile with:
   gcc -Wall -O3 fast_strbetween2.c -o fast_strbetween2

   Corrections and additions courtesy of:
   https://stackoverflow.com/questions/55308295/extracting-a-string-between-two-similar-or-different-strings-in-c-as-fast-as-p

*/

#include<stdio.h>  // printf
#include<stdlib.h> // malloc, free

// Strings now set to 'const'
char * fast_strbetween(const char *str, const char *str1, const char *str2)
{
    // string size will now be calculated by the characters picked up
    size_t str1pos    = 0;
    size_t str1chars;

    // Find str1
    do{

        str1chars = 0;

        // Will the do/while str1 check for '\0' suffice?
        // I haven't seen any issues yet, but not sure.
        while(str1[str1chars] == str[str1pos + str1chars]  && str1[str1chars] != '\0')
        {
            //printf("Found str1 char: %i num: %i pos: %i\n", str1[str1chars], str1chars + 1, str1pos);

            ++str1chars;
        }

        // Incrementing whilst not in conditional expression tested faster
        ++str1pos;

    /* There are two checks for "str1[str1chars] != '\0'". Trying to find
       another efficient way to do it in one. */
    }while(str[str1pos] != '\0' && str1[str1chars] != '\0');

    --str1pos;

    //For testing:
    //printf("str1pos: %i str1chars: %i\n", str1pos, str1chars);

    // exit if no chars were found or if didn't reach end of str1
    if(!str1chars || str1[str1chars] != '\0')
    {
        //printf("Bailing from str1 result\n");
        return '\0';
    }

    /* Got rid of the '+1' code which didn't allow for '' returns.
       I agree with your logic of <tag></tag> returning ''. */
    size_t str2pos = str1pos + str1chars;
    size_t str2chars;

    //printf("Starting pos for str2: %i\n", str1pos + str1chars);

    // Find str2
    do{

        str2chars = 0;

        while(str2[str2chars] == str[str2pos + str2chars] && str2[str2chars] != '\0')
        {
            //printf("Found str2 char: %i num: %i pos: %i \n", str2[str2chars], str2chars + 1, str2pos);
            ++str2chars;
        }

        ++str2pos;

    }while(str[str2pos] != '\0' && str2[str2chars] != '\0');

    --str2pos;

    //For testing:
    //printf("str2pos: %i str2chars: %i\n", str2pos, str2chars);

    if(!str2chars || str2[str2chars] != '\0')
    {
        //printf("Bailing from str2 result!\n");
        return '\0';
    }

    /* Trying to allocate strbetween with malloc. Is this correct? */
    char * strbetween = malloc(2);

    // Check if malloc succeeded:
    if (strbetween == '\0') return '\0';

    size_t tmp = 0;

    // Grab and store the string between!
    for(size_t i = str1pos + str1chars; i < str2pos; ++i)
    {
        strbetween[tmp] = str[i];
        ++tmp;
    }

    return strbetween;
}

int main() {

    char str[30]  = { "abaabbbaaaabbabbbaaabbb" };
    char str1[10] = { "aaa" };
    char str2[10] = { "bbb" };

    printf("Searching \'%s\' for \'%s\' and \'%s\'\n", str, str1, str2);
    printf("           0123456789\n\n"); // Easily see the elements
    printf("The word between is: \'%s\'\n", fast_strbetween(str, str1, str2));

    for(int i = 10000000; --i;)
        free(fast_strbetween(str, str1, str2));

    return 0;
}
复制循环混合使用有符号和无符号类型,这可能导致溢出时出现违反直觉的行为

/*
   Compile with:
   gcc -Wall -O3 fast_strbetween2.c -o fast_strbetween2

   Corrections and additions courtesy of:
   https://stackoverflow.com/questions/55308295/extracting-a-string-between-two-similar-or-different-strings-in-c-as-fast-as-p

*/

#include<stdio.h>  // printf
#include<stdlib.h> // malloc, free

// Strings now set to 'const'
char * fast_strbetween(const char *str, const char *str1, const char *str2)
{
    // string size will now be calculated by the characters picked up
    size_t str1pos    = 0;
    size_t str1chars;

    // Find str1
    do{

        str1chars = 0;

        // Will the do/while str1 check for '\0' suffice?
        // I haven't seen any issues yet, but not sure.
        while(str1[str1chars] == str[str1pos + str1chars]  && str1[str1chars] != '\0')
        {
            //printf("Found str1 char: %i num: %i pos: %i\n", str1[str1chars], str1chars + 1, str1pos);

            ++str1chars;
        }

        // Incrementing whilst not in conditional expression tested faster
        ++str1pos;

    /* There are two checks for "str1[str1chars] != '\0'". Trying to find
       another efficient way to do it in one. */
    }while(str[str1pos] != '\0' && str1[str1chars] != '\0');

    --str1pos;

    //For testing:
    //printf("str1pos: %i str1chars: %i\n", str1pos, str1chars);

    // exit if no chars were found or if didn't reach end of str1
    if(!str1chars || str1[str1chars] != '\0')
    {
        //printf("Bailing from str1 result\n");
        return '\0';
    }

    /* Got rid of the '+1' code which didn't allow for '' returns.
       I agree with your logic of <tag></tag> returning ''. */
    size_t str2pos = str1pos + str1chars;
    size_t str2chars;

    //printf("Starting pos for str2: %i\n", str1pos + str1chars);

    // Find str2
    do{

        str2chars = 0;

        while(str2[str2chars] == str[str2pos + str2chars] && str2[str2chars] != '\0')
        {
            //printf("Found str2 char: %i num: %i pos: %i \n", str2[str2chars], str2chars + 1, str2pos);
            ++str2chars;
        }

        ++str2pos;

    }while(str[str2pos] != '\0' && str2[str2chars] != '\0');

    --str2pos;

    //For testing:
    //printf("str2pos: %i str2chars: %i\n", str2pos, str2chars);

    if(!str2chars || str2[str2chars] != '\0')
    {
        //printf("Bailing from str2 result!\n");
        return '\0';
    }

    /* Trying to allocate strbetween with malloc. Is this correct? */
    char * strbetween = malloc(2);

    // Check if malloc succeeded:
    if (strbetween == '\0') return '\0';

    size_t tmp = 0;

    // Grab and store the string between!
    for(size_t i = str1pos + str1chars; i < str2pos; ++i)
    {
        strbetween[tmp] = str[i];
        ++tmp;
    }

    return strbetween;
}

int main() {

    char str[30]  = { "abaabbbaaaabbabbbaaabbb" };
    char str1[10] = { "aaa" };
    char str2[10] = { "bbb" };

    printf("Searching \'%s\' for \'%s\' and \'%s\'\n", str, str1, str2);
    printf("           0123456789\n\n"); // Easily see the elements
    printf("The word between is: \'%s\'\n", fast_strbetween(str, str1, str2));

    for(int i = 10000000; --i;)
        free(fast_strbetween(str, str1, str2));

    return 0;
}
您忘记设置空终止符,这与分配大小错误一致,但不正确

/*
   Compile with:
   gcc -Wall -O3 fast_strbetween2.c -o fast_strbetween2

   Corrections and additions courtesy of:
   https://stackoverflow.com/questions/55308295/extracting-a-string-between-two-similar-or-different-strings-in-c-as-fast-as-p

*/

#include<stdio.h>  // printf
#include<stdlib.h> // malloc, free

// Strings now set to 'const'
char * fast_strbetween(const char *str, const char *str1, const char *str2)
{
    // string size will now be calculated by the characters picked up
    size_t str1pos    = 0;
    size_t str1chars;

    // Find str1
    do{

        str1chars = 0;

        // Will the do/while str1 check for '\0' suffice?
        // I haven't seen any issues yet, but not sure.
        while(str1[str1chars] == str[str1pos + str1chars]  && str1[str1chars] != '\0')
        {
            //printf("Found str1 char: %i num: %i pos: %i\n", str1[str1chars], str1chars + 1, str1pos);

            ++str1chars;
        }

        // Incrementing whilst not in conditional expression tested faster
        ++str1pos;

    /* There are two checks for "str1[str1chars] != '\0'". Trying to find
       another efficient way to do it in one. */
    }while(str[str1pos] != '\0' && str1[str1chars] != '\0');

    --str1pos;

    //For testing:
    //printf("str1pos: %i str1chars: %i\n", str1pos, str1chars);

    // exit if no chars were found or if didn't reach end of str1
    if(!str1chars || str1[str1chars] != '\0')
    {
        //printf("Bailing from str1 result\n");
        return '\0';
    }

    /* Got rid of the '+1' code which didn't allow for '' returns.
       I agree with your logic of <tag></tag> returning ''. */
    size_t str2pos = str1pos + str1chars;
    size_t str2chars;

    //printf("Starting pos for str2: %i\n", str1pos + str1chars);

    // Find str2
    do{

        str2chars = 0;

        while(str2[str2chars] == str[str2pos + str2chars] && str2[str2chars] != '\0')
        {
            //printf("Found str2 char: %i num: %i pos: %i \n", str2[str2chars], str2chars + 1, str2pos);
            ++str2chars;
        }

        ++str2pos;

    }while(str[str2pos] != '\0' && str2[str2chars] != '\0');

    --str2pos;

    //For testing:
    //printf("str2pos: %i str2chars: %i\n", str2pos, str2chars);

    if(!str2chars || str2[str2chars] != '\0')
    {
        //printf("Bailing from str2 result!\n");
        return '\0';
    }

    /* Trying to allocate strbetween with malloc. Is this correct? */
    char * strbetween = malloc(2);

    // Check if malloc succeeded:
    if (strbetween == '\0') return '\0';

    size_t tmp = 0;

    // Grab and store the string between!
    for(size_t i = str1pos + str1chars; i < str2pos; ++i)
    {
        strbetween[tmp] = str[i];
        ++tmp;
    }

    return strbetween;
}

int main() {

    char str[30]  = { "abaabbbaaaabbabbbaaabbb" };
    char str1[10] = { "aaa" };
    char str2[10] = { "bbb" };

    printf("Searching \'%s\' for \'%s\' and \'%s\'\n", str, str1, str2);
    printf("           0123456789\n\n"); // Easily see the elements
    printf("The word between is: \'%s\'\n", fast_strbetween(str, str1, str2));

    for(int i = 10000000; --i;)
        free(fast_strbetween(str, str1, str2));

    return 0;
}
在您尝试和优化代码之前,您必须确保正确性!您的代码太复杂,有多个缺陷。优化是一个没有实际意义的问题

/*
   Compile with:
   gcc -Wall -O3 fast_strbetween2.c -o fast_strbetween2

   Corrections and additions courtesy of:
   https://stackoverflow.com/questions/55308295/extracting-a-string-between-two-similar-or-different-strings-in-c-as-fast-as-p

*/

#include<stdio.h>  // printf
#include<stdlib.h> // malloc, free

// Strings now set to 'const'
char * fast_strbetween(const char *str, const char *str1, const char *str2)
{
    // string size will now be calculated by the characters picked up
    size_t str1pos    = 0;
    size_t str1chars;

    // Find str1
    do{

        str1chars = 0;

        // Will the do/while str1 check for '\0' suffice?
        // I haven't seen any issues yet, but not sure.
        while(str1[str1chars] == str[str1pos + str1chars]  && str1[str1chars] != '\0')
        {
            //printf("Found str1 char: %i num: %i pos: %i\n", str1[str1chars], str1chars + 1, str1pos);

            ++str1chars;
        }

        // Incrementing whilst not in conditional expression tested faster
        ++str1pos;

    /* There are two checks for "str1[str1chars] != '\0'". Trying to find
       another efficient way to do it in one. */
    }while(str[str1pos] != '\0' && str1[str1chars] != '\0');

    --str1pos;

    //For testing:
    //printf("str1pos: %i str1chars: %i\n", str1pos, str1chars);

    // exit if no chars were found or if didn't reach end of str1
    if(!str1chars || str1[str1chars] != '\0')
    {
        //printf("Bailing from str1 result\n");
        return '\0';
    }

    /* Got rid of the '+1' code which didn't allow for '' returns.
       I agree with your logic of <tag></tag> returning ''. */
    size_t str2pos = str1pos + str1chars;
    size_t str2chars;

    //printf("Starting pos for str2: %i\n", str1pos + str1chars);

    // Find str2
    do{

        str2chars = 0;

        while(str2[str2chars] == str[str2pos + str2chars] && str2[str2chars] != '\0')
        {
            //printf("Found str2 char: %i num: %i pos: %i \n", str2[str2chars], str2chars + 1, str2pos);
            ++str2chars;
        }

        ++str2pos;

    }while(str[str2pos] != '\0' && str2[str2chars] != '\0');

    --str2pos;

    //For testing:
    //printf("str2pos: %i str2chars: %i\n", str2pos, str2chars);

    if(!str2chars || str2[str2chars] != '\0')
    {
        //printf("Bailing from str2 result!\n");
        return '\0';
    }

    /* Trying to allocate strbetween with malloc. Is this correct? */
    char * strbetween = malloc(2);

    // Check if malloc succeeded:
    if (strbetween == '\0') return '\0';

    size_t tmp = 0;

    // Grab and store the string between!
    for(size_t i = str1pos + str1chars; i < str2pos; ++i)
    {
        strbetween[tmp] = str[i];
        ++tmp;
    }

    return strbetween;
}

int main() {

    char str[30]  = { "abaabbbaaaabbabbbaaabbb" };
    char str1[10] = { "aaa" };
    char str2[10] = { "bbb" };

    printf("Searching \'%s\' for \'%s\' and \'%s\'\n", str, str1, str2);
    printf("           0123456789\n\n"); // Easily see the elements
    printf("The word between is: \'%s\'\n", fast_strbetween(str, str1, str2));

    for(int i = 10000000; --i;)
        free(fast_strbetween(str, str1, str2));

    return 0;
}
您应该首先使用标准的C字符串函数尝试一个非常简单的实现:在另一个字符串中搜索字符串是由strstrstr高效执行的

/*
   Compile with:
   gcc -Wall -O3 fast_strbetween2.c -o fast_strbetween2

   Corrections and additions courtesy of:
   https://stackoverflow.com/questions/55308295/extracting-a-string-between-two-similar-or-different-strings-in-c-as-fast-as-p

*/

#include<stdio.h>  // printf
#include<stdlib.h> // malloc, free

// Strings now set to 'const'
char * fast_strbetween(const char *str, const char *str1, const char *str2)
{
    // string size will now be calculated by the characters picked up
    size_t str1pos    = 0;
    size_t str1chars;

    // Find str1
    do{

        str1chars = 0;

        // Will the do/while str1 check for '\0' suffice?
        // I haven't seen any issues yet, but not sure.
        while(str1[str1chars] == str[str1pos + str1chars]  && str1[str1chars] != '\0')
        {
            //printf("Found str1 char: %i num: %i pos: %i\n", str1[str1chars], str1chars + 1, str1pos);

            ++str1chars;
        }

        // Incrementing whilst not in conditional expression tested faster
        ++str1pos;

    /* There are two checks for "str1[str1chars] != '\0'". Trying to find
       another efficient way to do it in one. */
    }while(str[str1pos] != '\0' && str1[str1chars] != '\0');

    --str1pos;

    //For testing:
    //printf("str1pos: %i str1chars: %i\n", str1pos, str1chars);

    // exit if no chars were found or if didn't reach end of str1
    if(!str1chars || str1[str1chars] != '\0')
    {
        //printf("Bailing from str1 result\n");
        return '\0';
    }

    /* Got rid of the '+1' code which didn't allow for '' returns.
       I agree with your logic of <tag></tag> returning ''. */
    size_t str2pos = str1pos + str1chars;
    size_t str2chars;

    //printf("Starting pos for str2: %i\n", str1pos + str1chars);

    // Find str2
    do{

        str2chars = 0;

        while(str2[str2chars] == str[str2pos + str2chars] && str2[str2chars] != '\0')
        {
            //printf("Found str2 char: %i num: %i pos: %i \n", str2[str2chars], str2chars + 1, str2pos);
            ++str2chars;
        }

        ++str2pos;

    }while(str[str2pos] != '\0' && str2[str2chars] != '\0');

    --str2pos;

    //For testing:
    //printf("str2pos: %i str2chars: %i\n", str2pos, str2chars);

    if(!str2chars || str2[str2chars] != '\0')
    {
        //printf("Bailing from str2 result!\n");
        return '\0';
    }

    /* Trying to allocate strbetween with malloc. Is this correct? */
    char * strbetween = malloc(2);

    // Check if malloc succeeded:
    if (strbetween == '\0') return '\0';

    size_t tmp = 0;

    // Grab and store the string between!
    for(size_t i = str1pos + str1chars; i < str2pos; ++i)
    {
        strbetween[tmp] = str[i];
        ++tmp;
    }

    return strbetween;
}

int main() {

    char str[30]  = { "abaabbbaaaabbabbbaaabbb" };
    char str1[10] = { "aaa" };
    char str2[10] = { "bbb" };

    printf("Searching \'%s\' for \'%s\' and \'%s\'\n", str, str1, str2);
    printf("           0123456789\n\n"); // Easily see the elements
    printf("The word between is: \'%s\'\n", fast_strbetween(str, str1, str2));

    for(int i = 10000000; --i;)
        free(fast_strbetween(str, str1, str2));

    return 0;
}
下面是一个使用strstr和strndup的简单实现,应在您的系统上提供:

/*
   Compile with:
   gcc -Wall -O3 fast_strbetween2.c -o fast_strbetween2

   Corrections and additions courtesy of:
   https://stackoverflow.com/questions/55308295/extracting-a-string-between-two-similar-or-different-strings-in-c-as-fast-as-p

*/

#include<stdio.h>  // printf
#include<stdlib.h> // malloc, free

// Strings now set to 'const'
char * fast_strbetween(const char *str, const char *str1, const char *str2)
{
    // string size will now be calculated by the characters picked up
    size_t str1pos    = 0;
    size_t str1chars;

    // Find str1
    do{

        str1chars = 0;

        // Will the do/while str1 check for '\0' suffice?
        // I haven't seen any issues yet, but not sure.
        while(str1[str1chars] == str[str1pos + str1chars]  && str1[str1chars] != '\0')
        {
            //printf("Found str1 char: %i num: %i pos: %i\n", str1[str1chars], str1chars + 1, str1pos);

            ++str1chars;
        }

        // Incrementing whilst not in conditional expression tested faster
        ++str1pos;

    /* There are two checks for "str1[str1chars] != '\0'". Trying to find
       another efficient way to do it in one. */
    }while(str[str1pos] != '\0' && str1[str1chars] != '\0');

    --str1pos;

    //For testing:
    //printf("str1pos: %i str1chars: %i\n", str1pos, str1chars);

    // exit if no chars were found or if didn't reach end of str1
    if(!str1chars || str1[str1chars] != '\0')
    {
        //printf("Bailing from str1 result\n");
        return '\0';
    }

    /* Got rid of the '+1' code which didn't allow for '' returns.
       I agree with your logic of <tag></tag> returning ''. */
    size_t str2pos = str1pos + str1chars;
    size_t str2chars;

    //printf("Starting pos for str2: %i\n", str1pos + str1chars);

    // Find str2
    do{

        str2chars = 0;

        while(str2[str2chars] == str[str2pos + str2chars] && str2[str2chars] != '\0')
        {
            //printf("Found str2 char: %i num: %i pos: %i \n", str2[str2chars], str2chars + 1, str2pos);
            ++str2chars;
        }

        ++str2pos;

    }while(str[str2pos] != '\0' && str2[str2chars] != '\0');

    --str2pos;

    //For testing:
    //printf("str2pos: %i str2chars: %i\n", str2pos, str2chars);

    if(!str2chars || str2[str2chars] != '\0')
    {
        //printf("Bailing from str2 result!\n");
        return '\0';
    }

    /* Trying to allocate strbetween with malloc. Is this correct? */
    char * strbetween = malloc(2);

    // Check if malloc succeeded:
    if (strbetween == '\0') return '\0';

    size_t tmp = 0;

    // Grab and store the string between!
    for(size_t i = str1pos + str1chars; i < str2pos; ++i)
    {
        strbetween[tmp] = str[i];
        ++tmp;
    }

    return strbetween;
}

int main() {

    char str[30]  = { "abaabbbaaaabbabbbaaabbb" };
    char str1[10] = { "aaa" };
    char str2[10] = { "bbb" };

    printf("Searching \'%s\' for \'%s\' and \'%s\'\n", str, str1, str2);
    printf("           0123456789\n\n"); // Easily see the elements
    printf("The word between is: \'%s\'\n", fast_strbetween(str, str1, str2));

    for(int i = 10000000; --i;)
        free(fast_strbetween(str, str1, str2));

    return 0;
}
#include <string.h>

char *simple_strbetween(const char *str, const char *str1, const char *str2) {
    const char *q;
    const char *p = strstr(str, str1);
    if (p) {
        p += strlen(str1);
        q = *str2 ? strstr(p, str2) : p + strlen(p);
        if (q)
            return strndup(p, q - p);
    }
    return NULL;
}
为了确保正确性,编写大量测试用例,包括边界用例,例如空字符串和相同字符串的所有组合

/*
   Compile with:
   gcc -Wall -O3 fast_strbetween2.c -o fast_strbetween2

   Corrections and additions courtesy of:
   https://stackoverflow.com/questions/55308295/extracting-a-string-between-two-similar-or-different-strings-in-c-as-fast-as-p

*/

#include<stdio.h>  // printf
#include<stdlib.h> // malloc, free

// Strings now set to 'const'
char * fast_strbetween(const char *str, const char *str1, const char *str2)
{
    // string size will now be calculated by the characters picked up
    size_t str1pos    = 0;
    size_t str1chars;

    // Find str1
    do{

        str1chars = 0;

        // Will the do/while str1 check for '\0' suffice?
        // I haven't seen any issues yet, but not sure.
        while(str1[str1chars] == str[str1pos + str1chars]  && str1[str1chars] != '\0')
        {
            //printf("Found str1 char: %i num: %i pos: %i\n", str1[str1chars], str1chars + 1, str1pos);

            ++str1chars;
        }

        // Incrementing whilst not in conditional expression tested faster
        ++str1pos;

    /* There are two checks for "str1[str1chars] != '\0'". Trying to find
       another efficient way to do it in one. */
    }while(str[str1pos] != '\0' && str1[str1chars] != '\0');

    --str1pos;

    //For testing:
    //printf("str1pos: %i str1chars: %i\n", str1pos, str1chars);

    // exit if no chars were found or if didn't reach end of str1
    if(!str1chars || str1[str1chars] != '\0')
    {
        //printf("Bailing from str1 result\n");
        return '\0';
    }

    /* Got rid of the '+1' code which didn't allow for '' returns.
       I agree with your logic of <tag></tag> returning ''. */
    size_t str2pos = str1pos + str1chars;
    size_t str2chars;

    //printf("Starting pos for str2: %i\n", str1pos + str1chars);

    // Find str2
    do{

        str2chars = 0;

        while(str2[str2chars] == str[str2pos + str2chars] && str2[str2chars] != '\0')
        {
            //printf("Found str2 char: %i num: %i pos: %i \n", str2[str2chars], str2chars + 1, str2pos);
            ++str2chars;
        }

        ++str2pos;

    }while(str[str2pos] != '\0' && str2[str2chars] != '\0');

    --str2pos;

    //For testing:
    //printf("str2pos: %i str2chars: %i\n", str2pos, str2chars);

    if(!str2chars || str2[str2chars] != '\0')
    {
        //printf("Bailing from str2 result!\n");
        return '\0';
    }

    /* Trying to allocate strbetween with malloc. Is this correct? */
    char * strbetween = malloc(2);

    // Check if malloc succeeded:
    if (strbetween == '\0') return '\0';

    size_t tmp = 0;

    // Grab and store the string between!
    for(size_t i = str1pos + str1chars; i < str2pos; ++i)
    {
        strbetween[tmp] = str[i];
        ++tmp;
    }

    return strbetween;
}

int main() {

    char str[30]  = { "abaabbbaaaabbabbbaaabbb" };
    char str1[10] = { "aaa" };
    char str2[10] = { "bbb" };

    printf("Searching \'%s\' for \'%s\' and \'%s\'\n", str, str1, str2);
    printf("           0123456789\n\n"); // Easily see the elements
    printf("The word between is: \'%s\'\n", fast_strbetween(str, str1, str2));

    for(int i = 10000000; --i;)
        free(fast_strbetween(str, str1, str2));

    return 0;
}
一旦您完全掌握了strbetween函数,就可以编写一个基准测试框架来测试性能。要获得可靠的性能数据并非易事,如果您尝试,您将体验到这一点。请记住配置编译器以选择适当的优化,例如-O3

/*
   Compile with:
   gcc -Wall -O3 fast_strbetween2.c -o fast_strbetween2

   Corrections and additions courtesy of:
   https://stackoverflow.com/questions/55308295/extracting-a-string-between-two-similar-or-different-strings-in-c-as-fast-as-p

*/

#include<stdio.h>  // printf
#include<stdlib.h> // malloc, free

// Strings now set to 'const'
char * fast_strbetween(const char *str, const char *str1, const char *str2)
{
    // string size will now be calculated by the characters picked up
    size_t str1pos    = 0;
    size_t str1chars;

    // Find str1
    do{

        str1chars = 0;

        // Will the do/while str1 check for '\0' suffice?
        // I haven't seen any issues yet, but not sure.
        while(str1[str1chars] == str[str1pos + str1chars]  && str1[str1chars] != '\0')
        {
            //printf("Found str1 char: %i num: %i pos: %i\n", str1[str1chars], str1chars + 1, str1pos);

            ++str1chars;
        }

        // Incrementing whilst not in conditional expression tested faster
        ++str1pos;

    /* There are two checks for "str1[str1chars] != '\0'". Trying to find
       another efficient way to do it in one. */
    }while(str[str1pos] != '\0' && str1[str1chars] != '\0');

    --str1pos;

    //For testing:
    //printf("str1pos: %i str1chars: %i\n", str1pos, str1chars);

    // exit if no chars were found or if didn't reach end of str1
    if(!str1chars || str1[str1chars] != '\0')
    {
        //printf("Bailing from str1 result\n");
        return '\0';
    }

    /* Got rid of the '+1' code which didn't allow for '' returns.
       I agree with your logic of <tag></tag> returning ''. */
    size_t str2pos = str1pos + str1chars;
    size_t str2chars;

    //printf("Starting pos for str2: %i\n", str1pos + str1chars);

    // Find str2
    do{

        str2chars = 0;

        while(str2[str2chars] == str[str2pos + str2chars] && str2[str2chars] != '\0')
        {
            //printf("Found str2 char: %i num: %i pos: %i \n", str2[str2chars], str2chars + 1, str2pos);
            ++str2chars;
        }

        ++str2pos;

    }while(str[str2pos] != '\0' && str2[str2chars] != '\0');

    --str2pos;

    //For testing:
    //printf("str2pos: %i str2chars: %i\n", str2pos, str2chars);

    if(!str2chars || str2[str2chars] != '\0')
    {
        //printf("Bailing from str2 result!\n");
        return '\0';
    }

    /* Trying to allocate strbetween with malloc. Is this correct? */
    char * strbetween = malloc(2);

    // Check if malloc succeeded:
    if (strbetween == '\0') return '\0';

    size_t tmp = 0;

    // Grab and store the string between!
    for(size_t i = str1pos + str1chars; i < str2pos; ++i)
    {
        strbetween[tmp] = str[i];
        ++tmp;
    }

    return strbetween;
}

int main() {

    char str[30]  = { "abaabbbaaaabbabbbaaabbb" };
    char str1[10] = { "aaa" };
    char str2[10] = { "bbb" };

    printf("Searching \'%s\' for \'%s\' and \'%s\'\n", str, str1, str2);
    printf("           0123456789\n\n"); // Easily see the elements
    printf("The word between is: \'%s\'\n", fast_strbetween(str, str1, str2));

    for(int i = 10000000; --i;)
        free(fast_strbetween(str, str1, str2));

    return 0;
}
只有这样,您才能进入下一步:如果您确实被限制使用标准C库函数,那么您可以首先重新编码您的strstr和strlen版本,并且仍然使用相同的方法。测试这个新版本的正确性和性能

/*
   Compile with:
   gcc -Wall -O3 fast_strbetween2.c -o fast_strbetween2

   Corrections and additions courtesy of:
   https://stackoverflow.com/questions/55308295/extracting-a-string-between-two-similar-or-different-strings-in-c-as-fast-as-p

*/

#include<stdio.h>  // printf
#include<stdlib.h> // malloc, free

// Strings now set to 'const'
char * fast_strbetween(const char *str, const char *str1, const char *str2)
{
    // string size will now be calculated by the characters picked up
    size_t str1pos    = 0;
    size_t str1chars;

    // Find str1
    do{

        str1chars = 0;

        // Will the do/while str1 check for '\0' suffice?
        // I haven't seen any issues yet, but not sure.
        while(str1[str1chars] == str[str1pos + str1chars]  && str1[str1chars] != '\0')
        {
            //printf("Found str1 char: %i num: %i pos: %i\n", str1[str1chars], str1chars + 1, str1pos);

            ++str1chars;
        }

        // Incrementing whilst not in conditional expression tested faster
        ++str1pos;

    /* There are two checks for "str1[str1chars] != '\0'". Trying to find
       another efficient way to do it in one. */
    }while(str[str1pos] != '\0' && str1[str1chars] != '\0');

    --str1pos;

    //For testing:
    //printf("str1pos: %i str1chars: %i\n", str1pos, str1chars);

    // exit if no chars were found or if didn't reach end of str1
    if(!str1chars || str1[str1chars] != '\0')
    {
        //printf("Bailing from str1 result\n");
        return '\0';
    }

    /* Got rid of the '+1' code which didn't allow for '' returns.
       I agree with your logic of <tag></tag> returning ''. */
    size_t str2pos = str1pos + str1chars;
    size_t str2chars;

    //printf("Starting pos for str2: %i\n", str1pos + str1chars);

    // Find str2
    do{

        str2chars = 0;

        while(str2[str2chars] == str[str2pos + str2chars] && str2[str2chars] != '\0')
        {
            //printf("Found str2 char: %i num: %i pos: %i \n", str2[str2chars], str2chars + 1, str2pos);
            ++str2chars;
        }

        ++str2pos;

    }while(str[str2pos] != '\0' && str2[str2chars] != '\0');

    --str2pos;

    //For testing:
    //printf("str2pos: %i str2chars: %i\n", str2pos, str2chars);

    if(!str2chars || str2[str2chars] != '\0')
    {
        //printf("Bailing from str2 result!\n");
        return '\0';
    }

    /* Trying to allocate strbetween with malloc. Is this correct? */
    char * strbetween = malloc(2);

    // Check if malloc succeeded:
    if (strbetween == '\0') return '\0';

    size_t tmp = 0;

    // Grab and store the string between!
    for(size_t i = str1pos + str1chars; i < str2pos; ++i)
    {
        strbetween[tmp] = str[i];
        ++tmp;
    }

    return strbetween;
}

int main() {

    char str[30]  = { "abaabbbaaaabbabbbaaabbb" };
    char str1[10] = { "aaa" };
    char str2[10] = { "bbb" };

    printf("Searching \'%s\' for \'%s\' and \'%s\'\n", str, str1, str2);
    printf("           0123456789\n\n"); // Easily see the elements
    printf("The word between is: \'%s\'\n", fast_strbetween(str, str1, str2));

    for(int i = 10000000; --i;)
        free(fast_strbetween(str, str1, str2));

    return 0;
}

冗余部分是strlenstr1的计算,当strstrstr找到匹配项时,它必须已确定。以及strndup中的扫描,这是不必要的,因为p和q之间不存在空字节。如果您有时间浪费,您可以尝试删除这些冗余内容,以牺牲可读性为代价,冒不符合要求的风险。如果您在各种各样的测试用例中平均得到任何改进,我会感到惊讶。20%将是了不起的。

您的代码存在多个问题,可能没有它应有的效率:

/*
   Compile with:
   gcc -Wall -O3 fast_strbetween2.c -o fast_strbetween2

   Corrections and additions courtesy of:
   https://stackoverflow.com/questions/55308295/extracting-a-string-between-two-similar-or-different-strings-in-c-as-fast-as-p

*/

#include<stdio.h>  // printf
#include<stdlib.h> // malloc, free

// Strings now set to 'const'
char * fast_strbetween(const char *str, const char *str1, const char *str2)
{
    // string size will now be calculated by the characters picked up
    size_t str1pos    = 0;
    size_t str1chars;

    // Find str1
    do{

        str1chars = 0;

        // Will the do/while str1 check for '\0' suffice?
        // I haven't seen any issues yet, but not sure.
        while(str1[str1chars] == str[str1pos + str1chars]  && str1[str1chars] != '\0')
        {
            //printf("Found str1 char: %i num: %i pos: %i\n", str1[str1chars], str1chars + 1, str1pos);

            ++str1chars;
        }

        // Incrementing whilst not in conditional expression tested faster
        ++str1pos;

    /* There are two checks for "str1[str1chars] != '\0'". Trying to find
       another efficient way to do it in one. */
    }while(str[str1pos] != '\0' && str1[str1chars] != '\0');

    --str1pos;

    //For testing:
    //printf("str1pos: %i str1chars: %i\n", str1pos, str1chars);

    // exit if no chars were found or if didn't reach end of str1
    if(!str1chars || str1[str1chars] != '\0')
    {
        //printf("Bailing from str1 result\n");
        return '\0';
    }

    /* Got rid of the '+1' code which didn't allow for '' returns.
       I agree with your logic of <tag></tag> returning ''. */
    size_t str2pos = str1pos + str1chars;
    size_t str2chars;

    //printf("Starting pos for str2: %i\n", str1pos + str1chars);

    // Find str2
    do{

        str2chars = 0;

        while(str2[str2chars] == str[str2pos + str2chars] && str2[str2chars] != '\0')
        {
            //printf("Found str2 char: %i num: %i pos: %i \n", str2[str2chars], str2chars + 1, str2pos);
            ++str2chars;
        }

        ++str2pos;

    }while(str[str2pos] != '\0' && str2[str2chars] != '\0');

    --str2pos;

    //For testing:
    //printf("str2pos: %i str2chars: %i\n", str2pos, str2chars);

    if(!str2chars || str2[str2chars] != '\0')
    {
        //printf("Bailing from str2 result!\n");
        return '\0';
    }

    /* Trying to allocate strbetween with malloc. Is this correct? */
    char * strbetween = malloc(2);

    // Check if malloc succeeded:
    if (strbetween == '\0') return '\0';

    size_t tmp = 0;

    // Grab and store the string between!
    for(size_t i = str1pos + str1chars; i < str2pos; ++i)
    {
        strbetween[tmp] = str[i];
        ++tmp;
    }

    return strbetween;
}

int main() {

    char str[30]  = { "abaabbbaaaabbabbbaaabbb" };
    char str1[10] = { "aaa" };
    char str2[10] = { "bbb" };

    printf("Searching \'%s\' for \'%s\' and \'%s\'\n", str, str1, str2);
    printf("           0123456789\n\n"); // Easily see the elements
    printf("The word between is: \'%s\'\n", fast_strbetween(str, str1, str2));

    for(int i = 10000000; --i;)
        free(fast_strbetween(str, str1, str2));

    return 0;
}
在字符串中使用int和unsigned int类型作为索引。这些类型可能小于尺寸范围。您应该修改代码以使用size\t,并避免在比较中混合使用有符号和无符号类型

/*
   Compile with:
   gcc -Wall -O3 fast_strbetween2.c -o fast_strbetween2

   Corrections and additions courtesy of:
   https://stackoverflow.com/questions/55308295/extracting-a-string-between-two-similar-or-different-strings-in-c-as-fast-as-p

*/

#include<stdio.h>  // printf
#include<stdlib.h> // malloc, free

// Strings now set to 'const'
char * fast_strbetween(const char *str, const char *str1, const char *str2)
{
    // string size will now be calculated by the characters picked up
    size_t str1pos    = 0;
    size_t str1chars;

    // Find str1
    do{

        str1chars = 0;

        // Will the do/while str1 check for '\0' suffice?
        // I haven't seen any issues yet, but not sure.
        while(str1[str1chars] == str[str1pos + str1chars]  && str1[str1chars] != '\0')
        {
            //printf("Found str1 char: %i num: %i pos: %i\n", str1[str1chars], str1chars + 1, str1pos);

            ++str1chars;
        }

        // Incrementing whilst not in conditional expression tested faster
        ++str1pos;

    /* There are two checks for "str1[str1chars] != '\0'". Trying to find
       another efficient way to do it in one. */
    }while(str[str1pos] != '\0' && str1[str1chars] != '\0');

    --str1pos;

    //For testing:
    //printf("str1pos: %i str1chars: %i\n", str1pos, str1chars);

    // exit if no chars were found or if didn't reach end of str1
    if(!str1chars || str1[str1chars] != '\0')
    {
        //printf("Bailing from str1 result\n");
        return '\0';
    }

    /* Got rid of the '+1' code which didn't allow for '' returns.
       I agree with your logic of <tag></tag> returning ''. */
    size_t str2pos = str1pos + str1chars;
    size_t str2chars;

    //printf("Starting pos for str2: %i\n", str1pos + str1chars);

    // Find str2
    do{

        str2chars = 0;

        while(str2[str2chars] == str[str2pos + str2chars] && str2[str2chars] != '\0')
        {
            //printf("Found str2 char: %i num: %i pos: %i \n", str2[str2chars], str2chars + 1, str2pos);
            ++str2chars;
        }

        ++str2pos;

    }while(str[str2pos] != '\0' && str2[str2chars] != '\0');

    --str2pos;

    //For testing:
    //printf("str2pos: %i str2chars: %i\n", str2pos, str2chars);

    if(!str2chars || str2[str2chars] != '\0')
    {
        //printf("Bailing from str2 result!\n");
        return '\0';
    }

    /* Trying to allocate strbetween with malloc. Is this correct? */
    char * strbetween = malloc(2);

    // Check if malloc succeeded:
    if (strbetween == '\0') return '\0';

    size_t tmp = 0;

    // Grab and store the string between!
    for(size_t i = str1pos + str1chars; i < str2pos; ++i)
    {
        strbetween[tmp] = str[i];
        ++tmp;
    }

    return strbetween;
}

int main() {

    char str[30]  = { "abaabbbaaaabbabbbaaabbb" };
    char str1[10] = { "aaa" };
    char str2[10] = { "bbb" };

    printf("Searching \'%s\' for \'%s\' and \'%s\'\n", str, str1, str2);
    printf("           0123456789\n\n"); // Easily see the elements
    printf("The word between is: \'%s\'\n", fast_strbetween(str, str1, str2));

    for(int i = 10000000; --i;)
        free(fast_strbetween(str, str1, str2));

    return 0;
}
函数的字符串参数应该声明为const char*,因为您不修改字符串,并且应该能够在没有警告的情况下传递const字符串

/*
   Compile with:
   gcc -Wall -O3 fast_strbetween2.c -o fast_strbetween2

   Corrections and additions courtesy of:
   https://stackoverflow.com/questions/55308295/extracting-a-string-between-two-similar-or-different-strings-in-c-as-fast-as-p

*/

#include<stdio.h>  // printf
#include<stdlib.h> // malloc, free

// Strings now set to 'const'
char * fast_strbetween(const char *str, const char *str1, const char *str2)
{
    // string size will now be calculated by the characters picked up
    size_t str1pos    = 0;
    size_t str1chars;

    // Find str1
    do{

        str1chars = 0;

        // Will the do/while str1 check for '\0' suffice?
        // I haven't seen any issues yet, but not sure.
        while(str1[str1chars] == str[str1pos + str1chars]  && str1[str1chars] != '\0')
        {
            //printf("Found str1 char: %i num: %i pos: %i\n", str1[str1chars], str1chars + 1, str1pos);

            ++str1chars;
        }

        // Incrementing whilst not in conditional expression tested faster
        ++str1pos;

    /* There are two checks for "str1[str1chars] != '\0'". Trying to find
       another efficient way to do it in one. */
    }while(str[str1pos] != '\0' && str1[str1chars] != '\0');

    --str1pos;

    //For testing:
    //printf("str1pos: %i str1chars: %i\n", str1pos, str1chars);

    // exit if no chars were found or if didn't reach end of str1
    if(!str1chars || str1[str1chars] != '\0')
    {
        //printf("Bailing from str1 result\n");
        return '\0';
    }

    /* Got rid of the '+1' code which didn't allow for '' returns.
       I agree with your logic of <tag></tag> returning ''. */
    size_t str2pos = str1pos + str1chars;
    size_t str2chars;

    //printf("Starting pos for str2: %i\n", str1pos + str1chars);

    // Find str2
    do{

        str2chars = 0;

        while(str2[str2chars] == str[str2pos + str2chars] && str2[str2chars] != '\0')
        {
            //printf("Found str2 char: %i num: %i pos: %i \n", str2[str2chars], str2chars + 1, str2pos);
            ++str2chars;
        }

        ++str2pos;

    }while(str[str2pos] != '\0' && str2[str2chars] != '\0');

    --str2pos;

    //For testing:
    //printf("str2pos: %i str2chars: %i\n", str2pos, str2chars);

    if(!str2chars || str2[str2chars] != '\0')
    {
        //printf("Bailing from str2 result!\n");
        return '\0';
    }

    /* Trying to allocate strbetween with malloc. Is this correct? */
    char * strbetween = malloc(2);

    // Check if malloc succeeded:
    if (strbetween == '\0') return '\0';

    size_t tmp = 0;

    // Grab and store the string between!
    for(size_t i = str1pos + str1chars; i < str2pos; ++i)
    {
        strbetween[tmp] = str[i];
        ++tmp;
    }

    return strbetween;
}

int main() {

    char str[30]  = { "abaabbbaaaabbabbbaaabbb" };
    char str1[10] = { "aaa" };
    char str2[10] = { "bbb" };

    printf("Searching \'%s\' for \'%s\' and \'%s\'\n", str, str1, str2);
    printf("           0123456789\n\n"); // Easily see the elements
    printf("The word between is: \'%s\'\n", fast_strbetween(str, str1, str2));

    for(int i = 10000000; --i;)
        free(fast_strbetween(str, str1, str2));

    return 0;
}
重新定义strlen是个坏主意:您的版本将比系统的优化、汇编编码和很可能的内联版本慢

/*
   Compile with:
   gcc -Wall -O3 fast_strbetween2.c -o fast_strbetween2

   Corrections and additions courtesy of:
   https://stackoverflow.com/questions/55308295/extracting-a-string-between-two-similar-or-different-strings-in-c-as-fast-as-p

*/

#include<stdio.h>  // printf
#include<stdlib.h> // malloc, free

// Strings now set to 'const'
char * fast_strbetween(const char *str, const char *str1, const char *str2)
{
    // string size will now be calculated by the characters picked up
    size_t str1pos    = 0;
    size_t str1chars;

    // Find str1
    do{

        str1chars = 0;

        // Will the do/while str1 check for '\0' suffice?
        // I haven't seen any issues yet, but not sure.
        while(str1[str1chars] == str[str1pos + str1chars]  && str1[str1chars] != '\0')
        {
            //printf("Found str1 char: %i num: %i pos: %i\n", str1[str1chars], str1chars + 1, str1pos);

            ++str1chars;
        }

        // Incrementing whilst not in conditional expression tested faster
        ++str1pos;

    /* There are two checks for "str1[str1chars] != '\0'". Trying to find
       another efficient way to do it in one. */
    }while(str[str1pos] != '\0' && str1[str1chars] != '\0');

    --str1pos;

    //For testing:
    //printf("str1pos: %i str1chars: %i\n", str1pos, str1chars);

    // exit if no chars were found or if didn't reach end of str1
    if(!str1chars || str1[str1chars] != '\0')
    {
        //printf("Bailing from str1 result\n");
        return '\0';
    }

    /* Got rid of the '+1' code which didn't allow for '' returns.
       I agree with your logic of <tag></tag> returning ''. */
    size_t str2pos = str1pos + str1chars;
    size_t str2chars;

    //printf("Starting pos for str2: %i\n", str1pos + str1chars);

    // Find str2
    do{

        str2chars = 0;

        while(str2[str2chars] == str[str2pos + str2chars] && str2[str2chars] != '\0')
        {
            //printf("Found str2 char: %i num: %i pos: %i \n", str2[str2chars], str2chars + 1, str2pos);
            ++str2chars;
        }

        ++str2pos;

    }while(str[str2pos] != '\0' && str2[str2chars] != '\0');

    --str2pos;

    //For testing:
    //printf("str2pos: %i str2chars: %i\n", str2pos, str2chars);

    if(!str2chars || str2[str2chars] != '\0')
    {
        //printf("Bailing from str2 result!\n");
        return '\0';
    }

    /* Trying to allocate strbetween with malloc. Is this correct? */
    char * strbetween = malloc(2);

    // Check if malloc succeeded:
    if (strbetween == '\0') return '\0';

    size_t tmp = 0;

    // Grab and store the string between!
    for(size_t i = str1pos + str1chars; i < str2pos; ++i)
    {
        strbetween[tmp] = str[i];
        ++tmp;
    }

    return strbetween;
}

int main() {

    char str[30]  = { "abaabbbaaaabbabbbaaabbb" };
    char str1[10] = { "aaa" };
    char str2[10] = { "bbb" };

    printf("Searching \'%s\' for \'%s\' and \'%s\'\n", str, str1, str2);
    printf("           0123456789\n\n"); // Easily see the elements
    printf("The word between is: \'%s\'\n", fast_strbetween(str, str1, str2));

    for(int i = 10000000; --i;)
        free(fast_strbetween(str, str1, str2));

    return 0;
}
计算str的长度是不必要的,而且可能成本高昂:str1和str2都可能出现在str的开头,扫描str的结尾将是浪费

/*
   Compile with:
   gcc -Wall -O3 fast_strbetween2.c -o fast_strbetween2

   Corrections and additions courtesy of:
   https://stackoverflow.com/questions/55308295/extracting-a-string-between-two-similar-or-different-strings-in-c-as-fast-as-p

*/

#include<stdio.h>  // printf
#include<stdlib.h> // malloc, free

// Strings now set to 'const'
char * fast_strbetween(const char *str, const char *str1, const char *str2)
{
    // string size will now be calculated by the characters picked up
    size_t str1pos    = 0;
    size_t str1chars;

    // Find str1
    do{

        str1chars = 0;

        // Will the do/while str1 check for '\0' suffice?
        // I haven't seen any issues yet, but not sure.
        while(str1[str1chars] == str[str1pos + str1chars]  && str1[str1chars] != '\0')
        {
            //printf("Found str1 char: %i num: %i pos: %i\n", str1[str1chars], str1chars + 1, str1pos);

            ++str1chars;
        }

        // Incrementing whilst not in conditional expression tested faster
        ++str1pos;

    /* There are two checks for "str1[str1chars] != '\0'". Trying to find
       another efficient way to do it in one. */
    }while(str[str1pos] != '\0' && str1[str1chars] != '\0');

    --str1pos;

    //For testing:
    //printf("str1pos: %i str1chars: %i\n", str1pos, str1chars);

    // exit if no chars were found or if didn't reach end of str1
    if(!str1chars || str1[str1chars] != '\0')
    {
        //printf("Bailing from str1 result\n");
        return '\0';
    }

    /* Got rid of the '+1' code which didn't allow for '' returns.
       I agree with your logic of <tag></tag> returning ''. */
    size_t str2pos = str1pos + str1chars;
    size_t str2chars;

    //printf("Starting pos for str2: %i\n", str1pos + str1chars);

    // Find str2
    do{

        str2chars = 0;

        while(str2[str2chars] == str[str2pos + str2chars] && str2[str2chars] != '\0')
        {
            //printf("Found str2 char: %i num: %i pos: %i \n", str2[str2chars], str2chars + 1, str2pos);
            ++str2chars;
        }

        ++str2pos;

    }while(str[str2pos] != '\0' && str2[str2chars] != '\0');

    --str2pos;

    //For testing:
    //printf("str2pos: %i str2chars: %i\n", str2pos, str2chars);

    if(!str2chars || str2[str2chars] != '\0')
    {
        //printf("Bailing from str2 result!\n");
        return '\0';
    }

    /* Trying to allocate strbetween with malloc. Is this correct? */
    char * strbetween = malloc(2);

    // Check if malloc succeeded:
    if (strbetween == '\0') return '\0';

    size_t tmp = 0;

    // Grab and store the string between!
    for(size_t i = str1pos + str1chars; i < str2pos; ++i)
    {
        strbetween[tmp] = str[i];
        ++tmp;
    }

    return strbetween;
}

int main() {

    char str[30]  = { "abaabbbaaaabbabbbaaabbb" };
    char str1[10] = { "aaa" };
    char str2[10] = { "bbb" };

    printf("Searching \'%s\' for \'%s\' and \'%s\'\n", str, str1, str2);
    printf("           0123456789\n\n"); // Easily see the elements
    printf("The word between is: \'%s\'\n", fast_strbetween(str, str1, str2));

    for(int i = 10000000; --i;)
        free(fast_strbetween(str, str1, str2));

    return 0;
}
第一个do/while循环中的while循环不正确:whilestr1[charsfound]==str[str1pos+charsfound]charsfound++;可能会访问str和str1结尾以外的字符,因为循环不会在空终止符处停止。如果str1仅出现在str的末尾,则表示行为未定义

/*
   Compile with:
   gcc -Wall -O3 fast_strbetween2.c -o fast_strbetween2

   Corrections and additions courtesy of:
   https://stackoverflow.com/questions/55308295/extracting-a-string-between-two-similar-or-different-strings-in-c-as-fast-as-p

*/

#include<stdio.h>  // printf
#include<stdlib.h> // malloc, free

// Strings now set to 'const'
char * fast_strbetween(const char *str, const char *str1, const char *str2)
{
    // string size will now be calculated by the characters picked up
    size_t str1pos    = 0;
    size_t str1chars;

    // Find str1
    do{

        str1chars = 0;

        // Will the do/while str1 check for '\0' suffice?
        // I haven't seen any issues yet, but not sure.
        while(str1[str1chars] == str[str1pos + str1chars]  && str1[str1chars] != '\0')
        {
            //printf("Found str1 char: %i num: %i pos: %i\n", str1[str1chars], str1chars + 1, str1pos);

            ++str1chars;
        }

        // Incrementing whilst not in conditional expression tested faster
        ++str1pos;

    /* There are two checks for "str1[str1chars] != '\0'". Trying to find
       another efficient way to do it in one. */
    }while(str[str1pos] != '\0' && str1[str1chars] != '\0');

    --str1pos;

    //For testing:
    //printf("str1pos: %i str1chars: %i\n", str1pos, str1chars);

    // exit if no chars were found or if didn't reach end of str1
    if(!str1chars || str1[str1chars] != '\0')
    {
        //printf("Bailing from str1 result\n");
        return '\0';
    }

    /* Got rid of the '+1' code which didn't allow for '' returns.
       I agree with your logic of <tag></tag> returning ''. */
    size_t str2pos = str1pos + str1chars;
    size_t str2chars;

    //printf("Starting pos for str2: %i\n", str1pos + str1chars);

    // Find str2
    do{

        str2chars = 0;

        while(str2[str2chars] == str[str2pos + str2chars] && str2[str2chars] != '\0')
        {
            //printf("Found str2 char: %i num: %i pos: %i \n", str2[str2chars], str2chars + 1, str2pos);
            ++str2chars;
        }

        ++str2pos;

    }while(str[str2pos] != '\0' && str2[str2chars] != '\0');

    --str2pos;

    //For testing:
    //printf("str2pos: %i str2chars: %i\n", str2pos, str2chars);

    if(!str2chars || str2[str2chars] != '\0')
    {
        //printf("Bailing from str2 result!\n");
        return '\0';
    }

    /* Trying to allocate strbetween with malloc. Is this correct? */
    char * strbetween = malloc(2);

    // Check if malloc succeeded:
    if (strbetween == '\0') return '\0';

    size_t tmp = 0;

    // Grab and store the string between!
    for(size_t i = str1pos + str1chars; i < str2pos; ++i)
    {
        strbetween[tmp] = str[i];
        ++tmp;
    }

    return strbetween;
}

int main() {

    char str[30]  = { "abaabbbaaaabbabbbaaabbb" };
    char str1[10] = { "aaa" };
    char str2[10] = { "bbb" };

    printf("Searching \'%s\' for \'%s\' and \'%s\'\n", str, str1, str2);
    printf("           0123456789\n\n"); // Easily see the elements
    printf("The word between is: \'%s\'\n", fast_strbetween(str, str1, str2));

    for(int i = 10000000; --i;)
        free(fast_strbetween(str, str1, str2));

    return 0;
}
如果str1是空字符串,您将在str-ins的末尾找到它 而不是一开始

/*
   Compile with:
   gcc -Wall -O3 fast_strbetween2.c -o fast_strbetween2

   Corrections and additions courtesy of:
   https://stackoverflow.com/questions/55308295/extracting-a-string-between-two-similar-or-different-strings-in-c-as-fast-as-p

*/

#include<stdio.h>  // printf
#include<stdlib.h> // malloc, free

// Strings now set to 'const'
char * fast_strbetween(const char *str, const char *str1, const char *str2)
{
    // string size will now be calculated by the characters picked up
    size_t str1pos    = 0;
    size_t str1chars;

    // Find str1
    do{

        str1chars = 0;

        // Will the do/while str1 check for '\0' suffice?
        // I haven't seen any issues yet, but not sure.
        while(str1[str1chars] == str[str1pos + str1chars]  && str1[str1chars] != '\0')
        {
            //printf("Found str1 char: %i num: %i pos: %i\n", str1[str1chars], str1chars + 1, str1pos);

            ++str1chars;
        }

        // Incrementing whilst not in conditional expression tested faster
        ++str1pos;

    /* There are two checks for "str1[str1chars] != '\0'". Trying to find
       another efficient way to do it in one. */
    }while(str[str1pos] != '\0' && str1[str1chars] != '\0');

    --str1pos;

    //For testing:
    //printf("str1pos: %i str1chars: %i\n", str1pos, str1chars);

    // exit if no chars were found or if didn't reach end of str1
    if(!str1chars || str1[str1chars] != '\0')
    {
        //printf("Bailing from str1 result\n");
        return '\0';
    }

    /* Got rid of the '+1' code which didn't allow for '' returns.
       I agree with your logic of <tag></tag> returning ''. */
    size_t str2pos = str1pos + str1chars;
    size_t str2chars;

    //printf("Starting pos for str2: %i\n", str1pos + str1chars);

    // Find str2
    do{

        str2chars = 0;

        while(str2[str2chars] == str[str2pos + str2chars] && str2[str2chars] != '\0')
        {
            //printf("Found str2 char: %i num: %i pos: %i \n", str2[str2chars], str2chars + 1, str2pos);
            ++str2chars;
        }

        ++str2pos;

    }while(str[str2pos] != '\0' && str2[str2chars] != '\0');

    --str2pos;

    //For testing:
    //printf("str2pos: %i str2chars: %i\n", str2pos, str2chars);

    if(!str2chars || str2[str2chars] != '\0')
    {
        //printf("Bailing from str2 result!\n");
        return '\0';
    }

    /* Trying to allocate strbetween with malloc. Is this correct? */
    char * strbetween = malloc(2);

    // Check if malloc succeeded:
    if (strbetween == '\0') return '\0';

    size_t tmp = 0;

    // Grab and store the string between!
    for(size_t i = str1pos + str1chars; i < str2pos; ++i)
    {
        strbetween[tmp] = str[i];
        ++tmp;
    }

    return strbetween;
}

int main() {

    char str[30]  = { "abaabbbaaaabbabbbaaabbb" };
    char str1[10] = { "aaa" };
    char str2[10] = { "bbb" };

    printf("Searching \'%s\' for \'%s\' and \'%s\'\n", str, str1, str2);
    printf("           0123456789\n\n"); // Easily see the elements
    printf("The word between is: \'%s\'\n", fast_strbetween(str, str1, str2));

    for(int i = 10000000; --i;)
        free(fast_strbetween(str, str1, str2));

    return 0;
}
为什么要将str2pos初始化为int str2pos=str1pos+str1len+1;?如果str中str2紧跟在str1之后,则应分配并返回一个空字符串。你对这个案例的评论是不可读的,你应该打断这么长的行以适应典型的屏幕宽度,比如80列。在AA、a、a之间的STRB是否应返回或为空仍有争议。IMHO它应该返回一个分配的空字符串,该字符串将与strbetween或strbetween,“,”上的预期行为一致。您的规范阻止strbetween返回空字符串会产生一个违反直觉的边框大小写

/*
   Compile with:
   gcc -Wall -O3 fast_strbetween2.c -o fast_strbetween2

   Corrections and additions courtesy of:
   https://stackoverflow.com/questions/55308295/extracting-a-string-between-two-similar-or-different-strings-in-c-as-fast-as-p

*/

#include<stdio.h>  // printf
#include<stdlib.h> // malloc, free

// Strings now set to 'const'
char * fast_strbetween(const char *str, const char *str1, const char *str2)
{
    // string size will now be calculated by the characters picked up
    size_t str1pos    = 0;
    size_t str1chars;

    // Find str1
    do{

        str1chars = 0;

        // Will the do/while str1 check for '\0' suffice?
        // I haven't seen any issues yet, but not sure.
        while(str1[str1chars] == str[str1pos + str1chars]  && str1[str1chars] != '\0')
        {
            //printf("Found str1 char: %i num: %i pos: %i\n", str1[str1chars], str1chars + 1, str1pos);

            ++str1chars;
        }

        // Incrementing whilst not in conditional expression tested faster
        ++str1pos;

    /* There are two checks for "str1[str1chars] != '\0'". Trying to find
       another efficient way to do it in one. */
    }while(str[str1pos] != '\0' && str1[str1chars] != '\0');

    --str1pos;

    //For testing:
    //printf("str1pos: %i str1chars: %i\n", str1pos, str1chars);

    // exit if no chars were found or if didn't reach end of str1
    if(!str1chars || str1[str1chars] != '\0')
    {
        //printf("Bailing from str1 result\n");
        return '\0';
    }

    /* Got rid of the '+1' code which didn't allow for '' returns.
       I agree with your logic of <tag></tag> returning ''. */
    size_t str2pos = str1pos + str1chars;
    size_t str2chars;

    //printf("Starting pos for str2: %i\n", str1pos + str1chars);

    // Find str2
    do{

        str2chars = 0;

        while(str2[str2chars] == str[str2pos + str2chars] && str2[str2chars] != '\0')
        {
            //printf("Found str2 char: %i num: %i pos: %i \n", str2[str2chars], str2chars + 1, str2pos);
            ++str2chars;
        }

        ++str2pos;

    }while(str[str2pos] != '\0' && str2[str2chars] != '\0');

    --str2pos;

    //For testing:
    //printf("str2pos: %i str2chars: %i\n", str2pos, str2chars);

    if(!str2chars || str2[str2chars] != '\0')
    {
        //printf("Bailing from str2 result!\n");
        return '\0';
    }

    /* Trying to allocate strbetween with malloc. Is this correct? */
    char * strbetween = malloc(2);

    // Check if malloc succeeded:
    if (strbetween == '\0') return '\0';

    size_t tmp = 0;

    // Grab and store the string between!
    for(size_t i = str1pos + str1chars; i < str2pos; ++i)
    {
        strbetween[tmp] = str[i];
        ++tmp;
    }

    return strbetween;
}

int main() {

    char str[30]  = { "abaabbbaaaabbabbbaaabbb" };
    char str1[10] = { "aaa" };
    char str2[10] = { "bbb" };

    printf("Searching \'%s\' for \'%s\' and \'%s\'\n", str, str1, str2);
    printf("           0123456789\n\n"); // Easily see the elements
    printf("The word between is: \'%s\'\n", fast_strbetween(str, str1, str2));

    for(int i = 10000000; --i;)
        free(fast_strbetween(str, str1, str2));

    return 0;
}
第二个扫描循环与第一个扫描循环存在相同的问题

/*
   Compile with:
   gcc -Wall -O3 fast_strbetween2.c -o fast_strbetween2

   Corrections and additions courtesy of:
   https://stackoverflow.com/questions/55308295/extracting-a-string-between-two-similar-or-different-strings-in-c-as-fast-as-p

*/

#include<stdio.h>  // printf
#include<stdlib.h> // malloc, free

// Strings now set to 'const'
char * fast_strbetween(const char *str, const char *str1, const char *str2)
{
    // string size will now be calculated by the characters picked up
    size_t str1pos    = 0;
    size_t str1chars;

    // Find str1
    do{

        str1chars = 0;

        // Will the do/while str1 check for '\0' suffice?
        // I haven't seen any issues yet, but not sure.
        while(str1[str1chars] == str[str1pos + str1chars]  && str1[str1chars] != '\0')
        {
            //printf("Found str1 char: %i num: %i pos: %i\n", str1[str1chars], str1chars + 1, str1pos);

            ++str1chars;
        }

        // Incrementing whilst not in conditional expression tested faster
        ++str1pos;

    /* There are two checks for "str1[str1chars] != '\0'". Trying to find
       another efficient way to do it in one. */
    }while(str[str1pos] != '\0' && str1[str1chars] != '\0');

    --str1pos;

    //For testing:
    //printf("str1pos: %i str1chars: %i\n", str1pos, str1chars);

    // exit if no chars were found or if didn't reach end of str1
    if(!str1chars || str1[str1chars] != '\0')
    {
        //printf("Bailing from str1 result\n");
        return '\0';
    }

    /* Got rid of the '+1' code which didn't allow for '' returns.
       I agree with your logic of <tag></tag> returning ''. */
    size_t str2pos = str1pos + str1chars;
    size_t str2chars;

    //printf("Starting pos for str2: %i\n", str1pos + str1chars);

    // Find str2
    do{

        str2chars = 0;

        while(str2[str2chars] == str[str2pos + str2chars] && str2[str2chars] != '\0')
        {
            //printf("Found str2 char: %i num: %i pos: %i \n", str2[str2chars], str2chars + 1, str2pos);
            ++str2chars;
        }

        ++str2pos;

    }while(str[str2pos] != '\0' && str2[str2chars] != '\0');

    --str2pos;

    //For testing:
    //printf("str2pos: %i str2chars: %i\n", str2pos, str2chars);

    if(!str2chars || str2[str2chars] != '\0')
    {
        //printf("Bailing from str2 result!\n");
        return '\0';
    }

    /* Trying to allocate strbetween with malloc. Is this correct? */
    char * strbetween = malloc(2);

    // Check if malloc succeeded:
    if (strbetween == '\0') return '\0';

    size_t tmp = 0;

    // Grab and store the string between!
    for(size_t i = str1pos + str1chars; i < str2pos; ++i)
    {
        strbetween[tmp] = str[i];
        ++tmp;
    }

    return strbetween;
}

int main() {

    char str[30]  = { "abaabbbaaaabbabbbaaabbb" };
    char str1[10] = { "aaa" };
    char str2[10] = { "bbb" };

    printf("Searching \'%s\' for \'%s\' and \'%s\'\n", str, str1, str2);
    printf("           0123456789\n\n"); // Easily see the elements
    printf("The word between is: \'%s\'\n", fast_strbetween(str, str1, str2));

    for(int i = 10000000; --i;)
        free(fast_strbetween(str, str1, str2));

    return 0;
}
行char*strbetween=char*mallocsizeofchar*str2pos-str1pos-str1len;存在多个问题:在C中不需要强制转换,如果坚持指定元素大小sizeofchar(定义为1),则应将元素数括起来,最后但并非最不重要的一点是,必须为空终止符分配一个额外的元素

/*
   Compile with:
   gcc -Wall -O3 fast_strbetween2.c -o fast_strbetween2

   Corrections and additions courtesy of:
   https://stackoverflow.com/questions/55308295/extracting-a-string-between-two-similar-or-different-strings-in-c-as-fast-as-p

*/

#include<stdio.h>  // printf
#include<stdlib.h> // malloc, free

// Strings now set to 'const'
char * fast_strbetween(const char *str, const char *str1, const char *str2)
{
    // string size will now be calculated by the characters picked up
    size_t str1pos    = 0;
    size_t str1chars;

    // Find str1
    do{

        str1chars = 0;

        // Will the do/while str1 check for '\0' suffice?
        // I haven't seen any issues yet, but not sure.
        while(str1[str1chars] == str[str1pos + str1chars]  && str1[str1chars] != '\0')
        {
            //printf("Found str1 char: %i num: %i pos: %i\n", str1[str1chars], str1chars + 1, str1pos);

            ++str1chars;
        }

        // Incrementing whilst not in conditional expression tested faster
        ++str1pos;

    /* There are two checks for "str1[str1chars] != '\0'". Trying to find
       another efficient way to do it in one. */
    }while(str[str1pos] != '\0' && str1[str1chars] != '\0');

    --str1pos;

    //For testing:
    //printf("str1pos: %i str1chars: %i\n", str1pos, str1chars);

    // exit if no chars were found or if didn't reach end of str1
    if(!str1chars || str1[str1chars] != '\0')
    {
        //printf("Bailing from str1 result\n");
        return '\0';
    }

    /* Got rid of the '+1' code which didn't allow for '' returns.
       I agree with your logic of <tag></tag> returning ''. */
    size_t str2pos = str1pos + str1chars;
    size_t str2chars;

    //printf("Starting pos for str2: %i\n", str1pos + str1chars);

    // Find str2
    do{

        str2chars = 0;

        while(str2[str2chars] == str[str2pos + str2chars] && str2[str2chars] != '\0')
        {
            //printf("Found str2 char: %i num: %i pos: %i \n", str2[str2chars], str2chars + 1, str2pos);
            ++str2chars;
        }

        ++str2pos;

    }while(str[str2pos] != '\0' && str2[str2chars] != '\0');

    --str2pos;

    //For testing:
    //printf("str2pos: %i str2chars: %i\n", str2pos, str2chars);

    if(!str2chars || str2[str2chars] != '\0')
    {
        //printf("Bailing from str2 result!\n");
        return '\0';
    }

    /* Trying to allocate strbetween with malloc. Is this correct? */
    char * strbetween = malloc(2);

    // Check if malloc succeeded:
    if (strbetween == '\0') return '\0';

    size_t tmp = 0;

    // Grab and store the string between!
    for(size_t i = str1pos + str1chars; i < str2pos; ++i)
    {
        strbetween[tmp] = str[i];
        ++tmp;
    }

    return strbetween;
}

int main() {

    char str[30]  = { "abaabbbaaaabbabbbaaabbb" };
    char str1[10] = { "aaa" };
    char str2[10] = { "bbb" };

    printf("Searching \'%s\' for \'%s\' and \'%s\'\n", str, str1, str2);
    printf("           0123456789\n\n"); // Easily see the elements
    printf("The word between is: \'%s\'\n", fast_strbetween(str, str1, str2));

    for(int i = 10000000; --i;)
        free(fast_strbetween(str, str1, str2));

    return 0;
}
不测试malloc是否成功。如果它返回NULL,您将有未定义的行为,而您应该只返回NULL

/*
   Compile with:
   gcc -Wall -O3 fast_strbetween2.c -o fast_strbetween2

   Corrections and additions courtesy of:
   https://stackoverflow.com/questions/55308295/extracting-a-string-between-two-similar-or-different-strings-in-c-as-fast-as-p

*/

#include<stdio.h>  // printf
#include<stdlib.h> // malloc, free

// Strings now set to 'const'
char * fast_strbetween(const char *str, const char *str1, const char *str2)
{
    // string size will now be calculated by the characters picked up
    size_t str1pos    = 0;
    size_t str1chars;

    // Find str1
    do{

        str1chars = 0;

        // Will the do/while str1 check for '\0' suffice?
        // I haven't seen any issues yet, but not sure.
        while(str1[str1chars] == str[str1pos + str1chars]  && str1[str1chars] != '\0')
        {
            //printf("Found str1 char: %i num: %i pos: %i\n", str1[str1chars], str1chars + 1, str1pos);

            ++str1chars;
        }

        // Incrementing whilst not in conditional expression tested faster
        ++str1pos;

    /* There are two checks for "str1[str1chars] != '\0'". Trying to find
       another efficient way to do it in one. */
    }while(str[str1pos] != '\0' && str1[str1chars] != '\0');

    --str1pos;

    //For testing:
    //printf("str1pos: %i str1chars: %i\n", str1pos, str1chars);

    // exit if no chars were found or if didn't reach end of str1
    if(!str1chars || str1[str1chars] != '\0')
    {
        //printf("Bailing from str1 result\n");
        return '\0';
    }

    /* Got rid of the '+1' code which didn't allow for '' returns.
       I agree with your logic of <tag></tag> returning ''. */
    size_t str2pos = str1pos + str1chars;
    size_t str2chars;

    //printf("Starting pos for str2: %i\n", str1pos + str1chars);

    // Find str2
    do{

        str2chars = 0;

        while(str2[str2chars] == str[str2pos + str2chars] && str2[str2chars] != '\0')
        {
            //printf("Found str2 char: %i num: %i pos: %i \n", str2[str2chars], str2chars + 1, str2pos);
            ++str2chars;
        }

        ++str2pos;

    }while(str[str2pos] != '\0' && str2[str2chars] != '\0');

    --str2pos;

    //For testing:
    //printf("str2pos: %i str2chars: %i\n", str2pos, str2chars);

    if(!str2chars || str2[str2chars] != '\0')
    {
        //printf("Bailing from str2 result!\n");
        return '\0';
    }

    /* Trying to allocate strbetween with malloc. Is this correct? */
    char * strbetween = malloc(2);

    // Check if malloc succeeded:
    if (strbetween == '\0') return '\0';

    size_t tmp = 0;

    // Grab and store the string between!
    for(size_t i = str1pos + str1chars; i < str2pos; ++i)
    {
        strbetween[tmp] = str[i];
        ++tmp;
    }

    return strbetween;
}

int main() {

    char str[30]  = { "abaabbbaaaabbabbbaaabbb" };
    char str1[10] = { "aaa" };
    char str2[10] = { "bbb" };

    printf("Searching \'%s\' for \'%s\' and \'%s\'\n", str, str1, str2);
    printf("           0123456789\n\n"); // Easily see the elements
    printf("The word between is: \'%s\'\n", fast_strbetween(str, str1, str2));

    for(int i = 10000000; --i;)
        free(fast_strbetween(str, str1, str2));

    return 0;
}
复制循环混合使用有符号和无符号类型,这可能导致溢出时出现违反直觉的行为

/*
   Compile with:
   gcc -Wall -O3 fast_strbetween2.c -o fast_strbetween2

   Corrections and additions courtesy of:
   https://stackoverflow.com/questions/55308295/extracting-a-string-between-two-similar-or-different-strings-in-c-as-fast-as-p

*/

#include<stdio.h>  // printf
#include<stdlib.h> // malloc, free

// Strings now set to 'const'
char * fast_strbetween(const char *str, const char *str1, const char *str2)
{
    // string size will now be calculated by the characters picked up
    size_t str1pos    = 0;
    size_t str1chars;

    // Find str1
    do{

        str1chars = 0;

        // Will the do/while str1 check for '\0' suffice?
        // I haven't seen any issues yet, but not sure.
        while(str1[str1chars] == str[str1pos + str1chars]  && str1[str1chars] != '\0')
        {
            //printf("Found str1 char: %i num: %i pos: %i\n", str1[str1chars], str1chars + 1, str1pos);

            ++str1chars;
        }

        // Incrementing whilst not in conditional expression tested faster
        ++str1pos;

    /* There are two checks for "str1[str1chars] != '\0'". Trying to find
       another efficient way to do it in one. */
    }while(str[str1pos] != '\0' && str1[str1chars] != '\0');

    --str1pos;

    //For testing:
    //printf("str1pos: %i str1chars: %i\n", str1pos, str1chars);

    // exit if no chars were found or if didn't reach end of str1
    if(!str1chars || str1[str1chars] != '\0')
    {
        //printf("Bailing from str1 result\n");
        return '\0';
    }

    /* Got rid of the '+1' code which didn't allow for '' returns.
       I agree with your logic of <tag></tag> returning ''. */
    size_t str2pos = str1pos + str1chars;
    size_t str2chars;

    //printf("Starting pos for str2: %i\n", str1pos + str1chars);

    // Find str2
    do{

        str2chars = 0;

        while(str2[str2chars] == str[str2pos + str2chars] && str2[str2chars] != '\0')
        {
            //printf("Found str2 char: %i num: %i pos: %i \n", str2[str2chars], str2chars + 1, str2pos);
            ++str2chars;
        }

        ++str2pos;

    }while(str[str2pos] != '\0' && str2[str2chars] != '\0');

    --str2pos;

    //For testing:
    //printf("str2pos: %i str2chars: %i\n", str2pos, str2chars);

    if(!str2chars || str2[str2chars] != '\0')
    {
        //printf("Bailing from str2 result!\n");
        return '\0';
    }

    /* Trying to allocate strbetween with malloc. Is this correct? */
    char * strbetween = malloc(2);

    // Check if malloc succeeded:
    if (strbetween == '\0') return '\0';

    size_t tmp = 0;

    // Grab and store the string between!
    for(size_t i = str1pos + str1chars; i < str2pos; ++i)
    {
        strbetween[tmp] = str[i];
        ++tmp;
    }

    return strbetween;
}

int main() {

    char str[30]  = { "abaabbbaaaabbabbbaaabbb" };
    char str1[10] = { "aaa" };
    char str2[10] = { "bbb" };

    printf("Searching \'%s\' for \'%s\' and \'%s\'\n", str, str1, str2);
    printf("           0123456789\n\n"); // Easily see the elements
    printf("The word between is: \'%s\'\n", fast_strbetween(str, str1, str2));

    for(int i = 10000000; --i;)
        free(fast_strbetween(str, str1, str2));

    return 0;
}
您忘记设置空终止符,这与分配大小错误一致,但不正确

/*
   Compile with:
   gcc -Wall -O3 fast_strbetween2.c -o fast_strbetween2

   Corrections and additions courtesy of:
   https://stackoverflow.com/questions/55308295/extracting-a-string-between-two-similar-or-different-strings-in-c-as-fast-as-p

*/

#include<stdio.h>  // printf
#include<stdlib.h> // malloc, free

// Strings now set to 'const'
char * fast_strbetween(const char *str, const char *str1, const char *str2)
{
    // string size will now be calculated by the characters picked up
    size_t str1pos    = 0;
    size_t str1chars;

    // Find str1
    do{

        str1chars = 0;

        // Will the do/while str1 check for '\0' suffice?
        // I haven't seen any issues yet, but not sure.
        while(str1[str1chars] == str[str1pos + str1chars]  && str1[str1chars] != '\0')
        {
            //printf("Found str1 char: %i num: %i pos: %i\n", str1[str1chars], str1chars + 1, str1pos);

            ++str1chars;
        }

        // Incrementing whilst not in conditional expression tested faster
        ++str1pos;

    /* There are two checks for "str1[str1chars] != '\0'". Trying to find
       another efficient way to do it in one. */
    }while(str[str1pos] != '\0' && str1[str1chars] != '\0');

    --str1pos;

    //For testing:
    //printf("str1pos: %i str1chars: %i\n", str1pos, str1chars);

    // exit if no chars were found or if didn't reach end of str1
    if(!str1chars || str1[str1chars] != '\0')
    {
        //printf("Bailing from str1 result\n");
        return '\0';
    }

    /* Got rid of the '+1' code which didn't allow for '' returns.
       I agree with your logic of <tag></tag> returning ''. */
    size_t str2pos = str1pos + str1chars;
    size_t str2chars;

    //printf("Starting pos for str2: %i\n", str1pos + str1chars);

    // Find str2
    do{

        str2chars = 0;

        while(str2[str2chars] == str[str2pos + str2chars] && str2[str2chars] != '\0')
        {
            //printf("Found str2 char: %i num: %i pos: %i \n", str2[str2chars], str2chars + 1, str2pos);
            ++str2chars;
        }

        ++str2pos;

    }while(str[str2pos] != '\0' && str2[str2chars] != '\0');

    --str2pos;

    //For testing:
    //printf("str2pos: %i str2chars: %i\n", str2pos, str2chars);

    if(!str2chars || str2[str2chars] != '\0')
    {
        //printf("Bailing from str2 result!\n");
        return '\0';
    }

    /* Trying to allocate strbetween with malloc. Is this correct? */
    char * strbetween = malloc(2);

    // Check if malloc succeeded:
    if (strbetween == '\0') return '\0';

    size_t tmp = 0;

    // Grab and store the string between!
    for(size_t i = str1pos + str1chars; i < str2pos; ++i)
    {
        strbetween[tmp] = str[i];
        ++tmp;
    }

    return strbetween;
}

int main() {

    char str[30]  = { "abaabbbaaaabbabbbaaabbb" };
    char str1[10] = { "aaa" };
    char str2[10] = { "bbb" };

    printf("Searching \'%s\' for \'%s\' and \'%s\'\n", str, str1, str2);
    printf("           0123456789\n\n"); // Easily see the elements
    printf("The word between is: \'%s\'\n", fast_strbetween(str, str1, str2));

    for(int i = 10000000; --i;)
        free(fast_strbetween(str, str1, str2));

    return 0;
}
在您尝试和优化代码之前,您必须确保正确性!您的代码太复杂,有多个缺陷。优化是一个没有实际意义的问题

/*
   Compile with:
   gcc -Wall -O3 fast_strbetween2.c -o fast_strbetween2

   Corrections and additions courtesy of:
   https://stackoverflow.com/questions/55308295/extracting-a-string-between-two-similar-or-different-strings-in-c-as-fast-as-p

*/

#include<stdio.h>  // printf
#include<stdlib.h> // malloc, free

// Strings now set to 'const'
char * fast_strbetween(const char *str, const char *str1, const char *str2)
{
    // string size will now be calculated by the characters picked up
    size_t str1pos    = 0;
    size_t str1chars;

    // Find str1
    do{

        str1chars = 0;

        // Will the do/while str1 check for '\0' suffice?
        // I haven't seen any issues yet, but not sure.
        while(str1[str1chars] == str[str1pos + str1chars]  && str1[str1chars] != '\0')
        {
            //printf("Found str1 char: %i num: %i pos: %i\n", str1[str1chars], str1chars + 1, str1pos);

            ++str1chars;
        }

        // Incrementing whilst not in conditional expression tested faster
        ++str1pos;

    /* There are two checks for "str1[str1chars] != '\0'". Trying to find
       another efficient way to do it in one. */
    }while(str[str1pos] != '\0' && str1[str1chars] != '\0');

    --str1pos;

    //For testing:
    //printf("str1pos: %i str1chars: %i\n", str1pos, str1chars);

    // exit if no chars were found or if didn't reach end of str1
    if(!str1chars || str1[str1chars] != '\0')
    {
        //printf("Bailing from str1 result\n");
        return '\0';
    }

    /* Got rid of the '+1' code which didn't allow for '' returns.
       I agree with your logic of <tag></tag> returning ''. */
    size_t str2pos = str1pos + str1chars;
    size_t str2chars;

    //printf("Starting pos for str2: %i\n", str1pos + str1chars);

    // Find str2
    do{

        str2chars = 0;

        while(str2[str2chars] == str[str2pos + str2chars] && str2[str2chars] != '\0')
        {
            //printf("Found str2 char: %i num: %i pos: %i \n", str2[str2chars], str2chars + 1, str2pos);
            ++str2chars;
        }

        ++str2pos;

    }while(str[str2pos] != '\0' && str2[str2chars] != '\0');

    --str2pos;

    //For testing:
    //printf("str2pos: %i str2chars: %i\n", str2pos, str2chars);

    if(!str2chars || str2[str2chars] != '\0')
    {
        //printf("Bailing from str2 result!\n");
        return '\0';
    }

    /* Trying to allocate strbetween with malloc. Is this correct? */
    char * strbetween = malloc(2);

    // Check if malloc succeeded:
    if (strbetween == '\0') return '\0';

    size_t tmp = 0;

    // Grab and store the string between!
    for(size_t i = str1pos + str1chars; i < str2pos; ++i)
    {
        strbetween[tmp] = str[i];
        ++tmp;
    }

    return strbetween;
}

int main() {

    char str[30]  = { "abaabbbaaaabbabbbaaabbb" };
    char str1[10] = { "aaa" };
    char str2[10] = { "bbb" };

    printf("Searching \'%s\' for \'%s\' and \'%s\'\n", str, str1, str2);
    printf("           0123456789\n\n"); // Easily see the elements
    printf("The word between is: \'%s\'\n", fast_strbetween(str, str1, str2));

    for(int i = 10000000; --i;)
        free(fast_strbetween(str, str1, str2));

    return 0;
}
您应该首先使用标准的C字符串函数尝试一个非常简单的实现:在另一个字符串中搜索字符串是由strstrstr高效执行的

/*
   Compile with:
   gcc -Wall -O3 fast_strbetween2.c -o fast_strbetween2

   Corrections and additions courtesy of:
   https://stackoverflow.com/questions/55308295/extracting-a-string-between-two-similar-or-different-strings-in-c-as-fast-as-p

*/

#include<stdio.h>  // printf
#include<stdlib.h> // malloc, free

// Strings now set to 'const'
char * fast_strbetween(const char *str, const char *str1, const char *str2)
{
    // string size will now be calculated by the characters picked up
    size_t str1pos    = 0;
    size_t str1chars;

    // Find str1
    do{

        str1chars = 0;

        // Will the do/while str1 check for '\0' suffice?
        // I haven't seen any issues yet, but not sure.
        while(str1[str1chars] == str[str1pos + str1chars]  && str1[str1chars] != '\0')
        {
            //printf("Found str1 char: %i num: %i pos: %i\n", str1[str1chars], str1chars + 1, str1pos);

            ++str1chars;
        }

        // Incrementing whilst not in conditional expression tested faster
        ++str1pos;

    /* There are two checks for "str1[str1chars] != '\0'". Trying to find
       another efficient way to do it in one. */
    }while(str[str1pos] != '\0' && str1[str1chars] != '\0');

    --str1pos;

    //For testing:
    //printf("str1pos: %i str1chars: %i\n", str1pos, str1chars);

    // exit if no chars were found or if didn't reach end of str1
    if(!str1chars || str1[str1chars] != '\0')
    {
        //printf("Bailing from str1 result\n");
        return '\0';
    }

    /* Got rid of the '+1' code which didn't allow for '' returns.
       I agree with your logic of <tag></tag> returning ''. */
    size_t str2pos = str1pos + str1chars;
    size_t str2chars;

    //printf("Starting pos for str2: %i\n", str1pos + str1chars);

    // Find str2
    do{

        str2chars = 0;

        while(str2[str2chars] == str[str2pos + str2chars] && str2[str2chars] != '\0')
        {
            //printf("Found str2 char: %i num: %i pos: %i \n", str2[str2chars], str2chars + 1, str2pos);
            ++str2chars;
        }

        ++str2pos;

    }while(str[str2pos] != '\0' && str2[str2chars] != '\0');

    --str2pos;

    //For testing:
    //printf("str2pos: %i str2chars: %i\n", str2pos, str2chars);

    if(!str2chars || str2[str2chars] != '\0')
    {
        //printf("Bailing from str2 result!\n");
        return '\0';
    }

    /* Trying to allocate strbetween with malloc. Is this correct? */
    char * strbetween = malloc(2);

    // Check if malloc succeeded:
    if (strbetween == '\0') return '\0';

    size_t tmp = 0;

    // Grab and store the string between!
    for(size_t i = str1pos + str1chars; i < str2pos; ++i)
    {
        strbetween[tmp] = str[i];
        ++tmp;
    }

    return strbetween;
}

int main() {

    char str[30]  = { "abaabbbaaaabbabbbaaabbb" };
    char str1[10] = { "aaa" };
    char str2[10] = { "bbb" };

    printf("Searching \'%s\' for \'%s\' and \'%s\'\n", str, str1, str2);
    printf("           0123456789\n\n"); // Easily see the elements
    printf("The word between is: \'%s\'\n", fast_strbetween(str, str1, str2));

    for(int i = 10000000; --i;)
        free(fast_strbetween(str, str1, str2));

    return 0;
}
下面是一个使用strstr和strndup的简单实现,应在您的系统上提供:

/*
   Compile with:
   gcc -Wall -O3 fast_strbetween2.c -o fast_strbetween2

   Corrections and additions courtesy of:
   https://stackoverflow.com/questions/55308295/extracting-a-string-between-two-similar-or-different-strings-in-c-as-fast-as-p

*/

#include<stdio.h>  // printf
#include<stdlib.h> // malloc, free

// Strings now set to 'const'
char * fast_strbetween(const char *str, const char *str1, const char *str2)
{
    // string size will now be calculated by the characters picked up
    size_t str1pos    = 0;
    size_t str1chars;

    // Find str1
    do{

        str1chars = 0;

        // Will the do/while str1 check for '\0' suffice?
        // I haven't seen any issues yet, but not sure.
        while(str1[str1chars] == str[str1pos + str1chars]  && str1[str1chars] != '\0')
        {
            //printf("Found str1 char: %i num: %i pos: %i\n", str1[str1chars], str1chars + 1, str1pos);

            ++str1chars;
        }

        // Incrementing whilst not in conditional expression tested faster
        ++str1pos;

    /* There are two checks for "str1[str1chars] != '\0'". Trying to find
       another efficient way to do it in one. */
    }while(str[str1pos] != '\0' && str1[str1chars] != '\0');

    --str1pos;

    //For testing:
    //printf("str1pos: %i str1chars: %i\n", str1pos, str1chars);

    // exit if no chars were found or if didn't reach end of str1
    if(!str1chars || str1[str1chars] != '\0')
    {
        //printf("Bailing from str1 result\n");
        return '\0';
    }

    /* Got rid of the '+1' code which didn't allow for '' returns.
       I agree with your logic of <tag></tag> returning ''. */
    size_t str2pos = str1pos + str1chars;
    size_t str2chars;

    //printf("Starting pos for str2: %i\n", str1pos + str1chars);

    // Find str2
    do{

        str2chars = 0;

        while(str2[str2chars] == str[str2pos + str2chars] && str2[str2chars] != '\0')
        {
            //printf("Found str2 char: %i num: %i pos: %i \n", str2[str2chars], str2chars + 1, str2pos);
            ++str2chars;
        }

        ++str2pos;

    }while(str[str2pos] != '\0' && str2[str2chars] != '\0');

    --str2pos;

    //For testing:
    //printf("str2pos: %i str2chars: %i\n", str2pos, str2chars);

    if(!str2chars || str2[str2chars] != '\0')
    {
        //printf("Bailing from str2 result!\n");
        return '\0';
    }

    /* Trying to allocate strbetween with malloc. Is this correct? */
    char * strbetween = malloc(2);

    // Check if malloc succeeded:
    if (strbetween == '\0') return '\0';

    size_t tmp = 0;

    // Grab and store the string between!
    for(size_t i = str1pos + str1chars; i < str2pos; ++i)
    {
        strbetween[tmp] = str[i];
        ++tmp;
    }

    return strbetween;
}

int main() {

    char str[30]  = { "abaabbbaaaabbabbbaaabbb" };
    char str1[10] = { "aaa" };
    char str2[10] = { "bbb" };

    printf("Searching \'%s\' for \'%s\' and \'%s\'\n", str, str1, str2);
    printf("           0123456789\n\n"); // Easily see the elements
    printf("The word between is: \'%s\'\n", fast_strbetween(str, str1, str2));

    for(int i = 10000000; --i;)
        free(fast_strbetween(str, str1, str2));

    return 0;
}
#include <string.h>

char *simple_strbetween(const char *str, const char *str1, const char *str2) {
    const char *q;
    const char *p = strstr(str, str1);
    if (p) {
        p += strlen(str1);
        q = *str2 ? strstr(p, str2) : p + strlen(p);
        if (q)
            return strndup(p, q - p);
    }
    return NULL;
}
为了确保正确性,编写大量测试用例,包括边界用例,例如空字符串和相同字符串的所有组合

/*
   Compile with:
   gcc -Wall -O3 fast_strbetween2.c -o fast_strbetween2

   Corrections and additions courtesy of:
   https://stackoverflow.com/questions/55308295/extracting-a-string-between-two-similar-or-different-strings-in-c-as-fast-as-p

*/

#include<stdio.h>  // printf
#include<stdlib.h> // malloc, free

// Strings now set to 'const'
char * fast_strbetween(const char *str, const char *str1, const char *str2)
{
    // string size will now be calculated by the characters picked up
    size_t str1pos    = 0;
    size_t str1chars;

    // Find str1
    do{

        str1chars = 0;

        // Will the do/while str1 check for '\0' suffice?
        // I haven't seen any issues yet, but not sure.
        while(str1[str1chars] == str[str1pos + str1chars]  && str1[str1chars] != '\0')
        {
            //printf("Found str1 char: %i num: %i pos: %i\n", str1[str1chars], str1chars + 1, str1pos);

            ++str1chars;
        }

        // Incrementing whilst not in conditional expression tested faster
        ++str1pos;

    /* There are two checks for "str1[str1chars] != '\0'". Trying to find
       another efficient way to do it in one. */
    }while(str[str1pos] != '\0' && str1[str1chars] != '\0');

    --str1pos;

    //For testing:
    //printf("str1pos: %i str1chars: %i\n", str1pos, str1chars);

    // exit if no chars were found or if didn't reach end of str1
    if(!str1chars || str1[str1chars] != '\0')
    {
        //printf("Bailing from str1 result\n");
        return '\0';
    }

    /* Got rid of the '+1' code which didn't allow for '' returns.
       I agree with your logic of <tag></tag> returning ''. */
    size_t str2pos = str1pos + str1chars;
    size_t str2chars;

    //printf("Starting pos for str2: %i\n", str1pos + str1chars);

    // Find str2
    do{

        str2chars = 0;

        while(str2[str2chars] == str[str2pos + str2chars] && str2[str2chars] != '\0')
        {
            //printf("Found str2 char: %i num: %i pos: %i \n", str2[str2chars], str2chars + 1, str2pos);
            ++str2chars;
        }

        ++str2pos;

    }while(str[str2pos] != '\0' && str2[str2chars] != '\0');

    --str2pos;

    //For testing:
    //printf("str2pos: %i str2chars: %i\n", str2pos, str2chars);

    if(!str2chars || str2[str2chars] != '\0')
    {
        //printf("Bailing from str2 result!\n");
        return '\0';
    }

    /* Trying to allocate strbetween with malloc. Is this correct? */
    char * strbetween = malloc(2);

    // Check if malloc succeeded:
    if (strbetween == '\0') return '\0';

    size_t tmp = 0;

    // Grab and store the string between!
    for(size_t i = str1pos + str1chars; i < str2pos; ++i)
    {
        strbetween[tmp] = str[i];
        ++tmp;
    }

    return strbetween;
}

int main() {

    char str[30]  = { "abaabbbaaaabbabbbaaabbb" };
    char str1[10] = { "aaa" };
    char str2[10] = { "bbb" };

    printf("Searching \'%s\' for \'%s\' and \'%s\'\n", str, str1, str2);
    printf("           0123456789\n\n"); // Easily see the elements
    printf("The word between is: \'%s\'\n", fast_strbetween(str, str1, str2));

    for(int i = 10000000; --i;)
        free(fast_strbetween(str, str1, str2));

    return 0;
}
一旦您完全掌握了strbetween函数,就可以编写一个基准测试框架来测试性能。要获得可靠的性能数据并非易事,如果您尝试,您将体验到这一点。请记住配置编译器以选择适当的优化,例如-O3

/*
   Compile with:
   gcc -Wall -O3 fast_strbetween2.c -o fast_strbetween2

   Corrections and additions courtesy of:
   https://stackoverflow.com/questions/55308295/extracting-a-string-between-two-similar-or-different-strings-in-c-as-fast-as-p

*/

#include<stdio.h>  // printf
#include<stdlib.h> // malloc, free

// Strings now set to 'const'
char * fast_strbetween(const char *str, const char *str1, const char *str2)
{
    // string size will now be calculated by the characters picked up
    size_t str1pos    = 0;
    size_t str1chars;

    // Find str1
    do{

        str1chars = 0;

        // Will the do/while str1 check for '\0' suffice?
        // I haven't seen any issues yet, but not sure.
        while(str1[str1chars] == str[str1pos + str1chars]  && str1[str1chars] != '\0')
        {
            //printf("Found str1 char: %i num: %i pos: %i\n", str1[str1chars], str1chars + 1, str1pos);

            ++str1chars;
        }

        // Incrementing whilst not in conditional expression tested faster
        ++str1pos;

    /* There are two checks for "str1[str1chars] != '\0'". Trying to find
       another efficient way to do it in one. */
    }while(str[str1pos] != '\0' && str1[str1chars] != '\0');

    --str1pos;

    //For testing:
    //printf("str1pos: %i str1chars: %i\n", str1pos, str1chars);

    // exit if no chars were found or if didn't reach end of str1
    if(!str1chars || str1[str1chars] != '\0')
    {
        //printf("Bailing from str1 result\n");
        return '\0';
    }

    /* Got rid of the '+1' code which didn't allow for '' returns.
       I agree with your logic of <tag></tag> returning ''. */
    size_t str2pos = str1pos + str1chars;
    size_t str2chars;

    //printf("Starting pos for str2: %i\n", str1pos + str1chars);

    // Find str2
    do{

        str2chars = 0;

        while(str2[str2chars] == str[str2pos + str2chars] && str2[str2chars] != '\0')
        {
            //printf("Found str2 char: %i num: %i pos: %i \n", str2[str2chars], str2chars + 1, str2pos);
            ++str2chars;
        }

        ++str2pos;

    }while(str[str2pos] != '\0' && str2[str2chars] != '\0');

    --str2pos;

    //For testing:
    //printf("str2pos: %i str2chars: %i\n", str2pos, str2chars);

    if(!str2chars || str2[str2chars] != '\0')
    {
        //printf("Bailing from str2 result!\n");
        return '\0';
    }

    /* Trying to allocate strbetween with malloc. Is this correct? */
    char * strbetween = malloc(2);

    // Check if malloc succeeded:
    if (strbetween == '\0') return '\0';

    size_t tmp = 0;

    // Grab and store the string between!
    for(size_t i = str1pos + str1chars; i < str2pos; ++i)
    {
        strbetween[tmp] = str[i];
        ++tmp;
    }

    return strbetween;
}

int main() {

    char str[30]  = { "abaabbbaaaabbabbbaaabbb" };
    char str1[10] = { "aaa" };
    char str2[10] = { "bbb" };

    printf("Searching \'%s\' for \'%s\' and \'%s\'\n", str, str1, str2);
    printf("           0123456789\n\n"); // Easily see the elements
    printf("The word between is: \'%s\'\n", fast_strbetween(str, str1, str2));

    for(int i = 10000000; --i;)
        free(fast_strbetween(str, str1, str2));

    return 0;
}
只有这样,您才能进入下一步:如果您确实被限制使用标准C库函数,那么您可以首先重新编码您的strstr和strlen版本,并且仍然使用相同的方法。测试这个新版本的正确性和性能

/*
   Compile with:
   gcc -Wall -O3 fast_strbetween2.c -o fast_strbetween2

   Corrections and additions courtesy of:
   https://stackoverflow.com/questions/55308295/extracting-a-string-between-two-similar-or-different-strings-in-c-as-fast-as-p

*/

#include<stdio.h>  // printf
#include<stdlib.h> // malloc, free

// Strings now set to 'const'
char * fast_strbetween(const char *str, const char *str1, const char *str2)
{
    // string size will now be calculated by the characters picked up
    size_t str1pos    = 0;
    size_t str1chars;

    // Find str1
    do{

        str1chars = 0;

        // Will the do/while str1 check for '\0' suffice?
        // I haven't seen any issues yet, but not sure.
        while(str1[str1chars] == str[str1pos + str1chars]  && str1[str1chars] != '\0')
        {
            //printf("Found str1 char: %i num: %i pos: %i\n", str1[str1chars], str1chars + 1, str1pos);

            ++str1chars;
        }

        // Incrementing whilst not in conditional expression tested faster
        ++str1pos;

    /* There are two checks for "str1[str1chars] != '\0'". Trying to find
       another efficient way to do it in one. */
    }while(str[str1pos] != '\0' && str1[str1chars] != '\0');

    --str1pos;

    //For testing:
    //printf("str1pos: %i str1chars: %i\n", str1pos, str1chars);

    // exit if no chars were found or if didn't reach end of str1
    if(!str1chars || str1[str1chars] != '\0')
    {
        //printf("Bailing from str1 result\n");
        return '\0';
    }

    /* Got rid of the '+1' code which didn't allow for '' returns.
       I agree with your logic of <tag></tag> returning ''. */
    size_t str2pos = str1pos + str1chars;
    size_t str2chars;

    //printf("Starting pos for str2: %i\n", str1pos + str1chars);

    // Find str2
    do{

        str2chars = 0;

        while(str2[str2chars] == str[str2pos + str2chars] && str2[str2chars] != '\0')
        {
            //printf("Found str2 char: %i num: %i pos: %i \n", str2[str2chars], str2chars + 1, str2pos);
            ++str2chars;
        }

        ++str2pos;

    }while(str[str2pos] != '\0' && str2[str2chars] != '\0');

    --str2pos;

    //For testing:
    //printf("str2pos: %i str2chars: %i\n", str2pos, str2chars);

    if(!str2chars || str2[str2chars] != '\0')
    {
        //printf("Bailing from str2 result!\n");
        return '\0';
    }

    /* Trying to allocate strbetween with malloc. Is this correct? */
    char * strbetween = malloc(2);

    // Check if malloc succeeded:
    if (strbetween == '\0') return '\0';

    size_t tmp = 0;

    // Grab and store the string between!
    for(size_t i = str1pos + str1chars; i < str2pos; ++i)
    {
        strbetween[tmp] = str[i];
        ++tmp;
    }

    return strbetween;
}

int main() {

    char str[30]  = { "abaabbbaaaabbabbbaaabbb" };
    char str1[10] = { "aaa" };
    char str2[10] = { "bbb" };

    printf("Searching \'%s\' for \'%s\' and \'%s\'\n", str, str1, str2);
    printf("           0123456789\n\n"); // Easily see the elements
    printf("The word between is: \'%s\'\n", fast_strbetween(str, str1, str2));

    for(int i = 10000000; --i;)
        free(fast_strbetween(str, str1, str2));

    return 0;
}

冗余部分是strlenstr1的计算,当strstrstr找到匹配项时,它必须已确定。以及strndup中的扫描,这是不必要的,因为p和q之间不存在空字节。如果您有时间浪费,您可以尝试删除这些冗余内容,以牺牲可读性为代价,冒不符合要求的风险。如果您在各种各样的测试用例中平均得到任何改进,我会感到惊讶。20%的比例会很好。

你好,就寝时间到了。我认为这里没有一个明确的问题适合stackoverflow。如果你想得到一般性的反馈或指点,你可能会在“简单通常是最好的”上有更好的运气。strstr找到指向str1的指针,验证,然后是strstrp+1,str2,验证q-p>1,然后分配q-p+1、memcpy和num-terminate.MFisherKDX,感谢其他站点。我们将看到这是如何展开的,如果是这样,我将知道该去哪里。大卫·C·兰金。通常是的。我不得不承认,当我离开的时候可能会更好的时候,我经常微聚焦;但是,计时结果可能说明了一个不同的故事——‘时间’会告诉我们。嗨,睡觉时间到了。我认为这里没有一个明确的问题适合stackoverflow。如果你想得到一般性的反馈或指点,你可能会在“简单通常是最好的”上有更好的运气。strstr找到指向str1的指针,验证,然后是strstrp+1,str2,验证q-p>1,然后分配q-p+1、memcpy和num-terminate.MFisherKDX,感谢其他站点。我们将看到这是如何展开的,如果是这样,我将知道该去哪里。大卫·C·兰金。通常是的。我不得不承认,当我离开的时候可能会更好的时候,我经常微聚焦;但是,计时结果可能说明了一个不同的故事——‘时间’会告诉我们。哇!真棒的回答。我能想到的合理情况是char*p=strstrstr,str1,*q;如果p&&q=STRP+1,str2&&q-p>1/*分配q-p+1,memcpy,nul terminate*/chaqrlie,如果我能给你2票,我会;非常感谢你花时间写下这一切!非常非常有用,我需要的就是让我走上代码正确性的正轨,这是我非常缺乏的。。。我已经做了我能做的大部分更正。不确定我的“malloc”代码是否正确。修复的注释在代码中。可能需要一点时间来运行一些额外的测试并更新原始帖子。大卫·C·兰金:我喜欢你的工作
/*
   Compile with:
   gcc -Wall -O3 fast_strbetween2.c -o fast_strbetween2

   Corrections and additions courtesy of:
   https://stackoverflow.com/questions/55308295/extracting-a-string-between-two-similar-or-different-strings-in-c-as-fast-as-p

*/

#include<stdio.h>  // printf
#include<stdlib.h> // malloc, free

// Strings now set to 'const'
char * fast_strbetween(const char *str, const char *str1, const char *str2)
{
    // string size will now be calculated by the characters picked up
    size_t str1pos    = 0;
    size_t str1chars;

    // Find str1
    do{

        str1chars = 0;

        // Will the do/while str1 check for '\0' suffice?
        // I haven't seen any issues yet, but not sure.
        while(str1[str1chars] == str[str1pos + str1chars]  && str1[str1chars] != '\0')
        {
            //printf("Found str1 char: %i num: %i pos: %i\n", str1[str1chars], str1chars + 1, str1pos);

            ++str1chars;
        }

        // Incrementing whilst not in conditional expression tested faster
        ++str1pos;

    /* There are two checks for "str1[str1chars] != '\0'". Trying to find
       another efficient way to do it in one. */
    }while(str[str1pos] != '\0' && str1[str1chars] != '\0');

    --str1pos;

    //For testing:
    //printf("str1pos: %i str1chars: %i\n", str1pos, str1chars);

    // exit if no chars were found or if didn't reach end of str1
    if(!str1chars || str1[str1chars] != '\0')
    {
        //printf("Bailing from str1 result\n");
        return '\0';
    }

    /* Got rid of the '+1' code which didn't allow for '' returns.
       I agree with your logic of <tag></tag> returning ''. */
    size_t str2pos = str1pos + str1chars;
    size_t str2chars;

    //printf("Starting pos for str2: %i\n", str1pos + str1chars);

    // Find str2
    do{

        str2chars = 0;

        while(str2[str2chars] == str[str2pos + str2chars] && str2[str2chars] != '\0')
        {
            //printf("Found str2 char: %i num: %i pos: %i \n", str2[str2chars], str2chars + 1, str2pos);
            ++str2chars;
        }

        ++str2pos;

    }while(str[str2pos] != '\0' && str2[str2chars] != '\0');

    --str2pos;

    //For testing:
    //printf("str2pos: %i str2chars: %i\n", str2pos, str2chars);

    if(!str2chars || str2[str2chars] != '\0')
    {
        //printf("Bailing from str2 result!\n");
        return '\0';
    }

    /* Trying to allocate strbetween with malloc. Is this correct? */
    char * strbetween = malloc(2);

    // Check if malloc succeeded:
    if (strbetween == '\0') return '\0';

    size_t tmp = 0;

    // Grab and store the string between!
    for(size_t i = str1pos + str1chars; i < str2pos; ++i)
    {
        strbetween[tmp] = str[i];
        ++tmp;
    }

    return strbetween;
}

int main() {

    char str[30]  = { "abaabbbaaaabbabbbaaabbb" };
    char str1[10] = { "aaa" };
    char str2[10] = { "bbb" };

    printf("Searching \'%s\' for \'%s\' and \'%s\'\n", str, str1, str2);
    printf("           0123456789\n\n"); // Easily see the elements
    printf("The word between is: \'%s\'\n", fast_strbetween(str, str1, str2));

    for(int i = 10000000; --i;)
        free(fast_strbetween(str, str1, str2));

    return 0;
}

优化。你能不能把剩下的代码加进去,这样我就可以对其他代码运行了?哇!真棒的回答。我能想到的合理情况是char*p=strstrstr,str1,*q;如果p&&q=STRP+1,str2&&q-p>1/*分配q-p+1,memcpy,nul terminate*/chaqrlie,如果我能给你2票,我会;非常感谢你花时间写下这一切!非常非常有用,我需要的就是让我走上代码正确性的正轨,这是我非常缺乏的。。。我已经做了我能做的大部分更正。不确定我的“malloc”代码是否正确。修复的注释在代码中。可能需要一点时间来运行一些额外的测试并更新原始帖子。大卫·C·兰金:我喜欢你的乐观。你能不能把剩下的代码加进去,这样我就可以在其他代码上运行了?