码迷,mamicode.com
首页 > 编程语言 > 详细

【C语言】 实现strlen

时间:2015-11-08 15:23:39      阅读:288      评论:0      收藏:0      [点我收藏+]

标签:c   递归   strlen   

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

//方法一:使用指针

int my_strlen(const  char *str)
{
	assert(str);
	int count = 0;
	while (*str++)
	{
		count++;
	}
	return count;
}

int main()
{
	char *str = "abcdef";
	int len = my_strlen(str);
	printf("%d\n", len);
	system("pause");
	return 0;
}

//方法二:递归实现

int my_strlen(const char *str)
{
	if (*str ==‘\0‘ )
	{
		return 0;
	}
	else
	{
		return 1 + my_strlen(str+1);  //str+1
	}
}

int main()
{
	char *str = "abcdef";
	//strlen(str) == 1+strlen(str+1)==1+1+strlen(str+1+1)
	int len = my_strlen(str);
	printf("%d\n", len);
	system("pause");
	return 0;
}


本文出自 “Vs吕小布” 博客,谢绝转载!

【C语言】 实现strlen

标签:c   递归   strlen   

原文地址:http://survive.blog.51cto.com/10728490/1710682

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!