首页 > 其他 > 详细

求字符串长度的三种方法

时间:2015-10-28 01:39:01      阅读:257      评论:0      收藏:0      [点我收藏+]
1.指针
#include<stdio.h>

int strlen(char s[])
{
    int len=0;
	while(*s++!=‘\0‘)
	{
	      len++;
	}
	return len;
}
int main()
{
	char s[]="123456789";
	printf("%d\n",strlen(s));
	system("pause");
   return 0;
}


2.计数
#include<stdio.h>

int strlen(char s[])
{
    int i=0;
	int count=0;
	while(s[i++]!=‘\0‘)
	{
	    count++;
	}
	return count;
}
int main()
{
	char s[]="123456789";
	printf("%d\n",strlen(s));
	system("pause");
   return 0;
}

3.递归
#include<stdio.h>

int strlen(char s[])
{
	
   if(*s==‘\0‘)
	   return 0;
   else
	   return 1+strlen(s+1);
}
int main()
{
	char s[]="abcdef";
	printf("%d\n",strlen(s));
	system("pause");
   return 0;
}


求字符串长度的三种方法

原文:http://760470897.blog.51cto.com/10696844/1706974

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!