字符串長度的三種求取方法

1.遍歷字符串,只要不遇到字符0,計數器就加1.
int my_strlen(const char *str)//加const修飾更安全
{
	int count=0;
	while(*str)
	{
		count++;
		str++;
	}
	return count;
}


2.遞歸實現
int my_strlen(const char *str)
{
	while(*str)
	{
		return 1+my_strlen(str+1);
	}
	return 0;
}

3.地址相減
int my_strlen(const char *str)
{
	char *start=str;
	while(*str)
	{
		str++;
	}
	return str-start;//起始位置的地址—末尾位置的地址 = 個數
}
相關文章
相關標籤/搜索