strlen实现

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了strlen实现相关的知识,希望对你有一定的参考价值。

size_t my_strlen(const char* str)
{
    const char* ptr = str;
    for (; ((int)ptr & 0x03) != 0; ++ptr)
    {
        if (*ptr == \0)
            return ptr - str;
    }

    unsigned int* ptr_d = (unsigned int*)ptr;
    unsigned int magic = 0x7efefeff;
    //01111110    11111110    11111110     11111111 

    while (true)
    {
        unsigned int bits32 = *ptr_d++;
        if ((((bits32 + magic) ^ (bits32 ^ -1)) & ~magic) != 0) // bits32 ^ -1 等价于 ~bits32
        {
            ptr = (const char*)(ptr_d - 1);
            if (ptr[0] == 0)
                return ptr - str;
            if (ptr[1] == 0)
                return ptr - str + 1;
            if (ptr[2] == 0)
                return ptr - str + 2;
            if (ptr[3] == 0)
                return ptr - str + 3;
        }
    }
}

 

以上是关于strlen实现的主要内容,如果未能解决你的问题,请参考以下文章

strlen源码剖析(可查看glibc和VC的CRT源代码)

strlen()函数的模拟实现

strlen()函数的模拟实现

多种方式实现strlen

模拟实现Strlen函数

[C/C++笔面试]自己实现Strlen,my_strlen最优解