程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> 關於C語言 >> C語言--求字符串長度的三種解法

C語言--求字符串長度的三種解法

編輯:關於C語言

C語言--求字符串長度的三種解法


問題:     求一個字符串的三種解法 一、計數的方法  
#include<stdio.h>
#include<assert.h>
int my_strlen( char* str)
{
    int count=0;
    while (*str)
    {
        count++;
        str++;
    }
    return count;
}
int main(void)
{
    char *arr = "abcef";
    int ret = my_strlen(arr);
    printf("%d\n", ret);
}

 

  二、指針-指針的方法  
#include<stdio.h>
#include<assert.h>
int  my_strlen(const char*str)
{
    assert(srt);
    const char* ret = str;
    while (*ret++)
    {
        ;
    }
    return(ret - str-1);
}
     
int main(void)
{

    char *arr = "abcdef";
     printf("%d\n",my_strlen(arr));   
}

 

  三、用遞歸的方法  
#include<stdio.h>
#include<assert.h>
int my_strlen(char* srt)
{
    assert(srt);
    if (*srt == '\0')
    {
        return 0;
    }
    else
    {    
        srt++;
        return (1 + my_strlen(srt));
         
    }
}
int main(void)
{
    char *arr = "abcdef";
    printf("%d\n", my_strlen(arr));
}

 

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved