模拟实现Strlen函数

Posted yishengpan

tags:

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

1、模拟实现Strlen函数

    a#include<stdio.h>

#include<assert.h>
 int my_strlen(char* arr)
 {
     assert(arr != NULL);
     char* x = arr;
     while (*arr++ != )
     {
        ;
     }
      return arr - x - 1;
 }

 int main()
 {
   char arr[] = "abcdef";
   int ret = my_strlen(arr);
   printf("%d", ret);return 0;
 }

 

  b、运用函数递归来实现 

 1 #include<stdio.h>
 2 #include<assert.h>
 3 
 4 int my_strlen(char* arr)
 5 {
 6   assert(arr != NULL);
 7   if(*arr == )
 8     return 0;
 9    else
10    return 1 + my_strlen(arr + 1);
11 }
12 
13 
14 int main()
15 {
16     char arr[] = "abcdef";
17     int ret = my_strlen(arr);
18     printf("%d",ret);
19     return 0;  
20 }

 c、用计数器方法实现

#include<stdio.h>
#include<assert.h>

 int my_strlen(char* arr)
 {
   assert(arr != NULL);
   int count = 0;
   while (*arr != )
   {
      count++;
      arr++;
  }
   return count;
 }

 int main()
 {
   char arr[] = "abcdef";
   int ret = my_strlen(arr);
   printf("%d", ret);
   system("pause");
   return 0;
 }

 

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

模拟实现Strlen函数

C语言之库函数(strlen,strcpy,strcmp)模拟实现

strlen函数详解&&注意事项&&模拟实现

字符串函数的使用与模拟实现

模拟实现库函数strlen,strcpy,strstr,memmove,memcpy,strcat

str系列库函数--模拟实现