温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

C语言str部分函数实现

发布时间:2020-06-17 23:13:30 来源:网络 阅读:405 作者:zheng_feng 栏目:编程语言

int m_strstr(const char*dst,const char*sub)

{

if (dst == NULL || sub == NULL)

return NULL;

int d_length = strlen(dst) + 1;

int s_length = strlen(sub) + 1;

int dst_index;

int sub_index;

int j;

for (dst_index = 0; dst_index < d_length; ++dst_index)

{

sub_index = 0;

if (dst[dst_index] == sub[sub_index])

{

j = dst_index;

while (dst[j] == sub[sub_index])

{

++sub_index;

++j;

if (sub_index == (s_length - 1))

return dst_index;

}

}

}

return -1;

}

char* m_strcpy(char* dst, const char* src)

{

if (dst == NULL || src == NULL)

return NULL;

char* dst_t = dst;

while (*dst_t++ = *src++);

return dst;

}

void* m_memmove(void* dst,const void* src,int count)

{

if (dst == NULL || src == NULL)

return NULL;

char* dst_t = (char*)dst;

char* src_t = (char*)src;

int s_length = strlen(src_t) + 1;

if ((int)dst < (int)src || (int)dst >(int)src + s_length)

{

while (count--)

{

*dst_t++ = *src_t++;

}

}

else

{

while (count)

{

*(dst_t + count) = *(src_t + count);

count--;

}

}

return dst;

}

int m_strcmp(const char* dst, const char* src)

{

assert(dst == NULL);

assert(src == NULL);

while ((*dst++ == *src++)&&(*dst != '\0')&&(*src != '\0'));

return *dst - *src;

}


向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI