码迷,mamicode.com
首页 > 其他好文 > 详细

字符串查找相同字母代码

时间:2014-09-14 20:31:17      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:style   color   io   os   ar   for   div   sp   代码   

int char_contains(char str[],char c)
{
    //方法1:
    int len=strlen(str);
    for (int i=0; i<len; i++)
    {
        if (str[i]==c)
        {
            return 1;
        }
    }
    return 0;
    //方法2:
    int i=0;
    while (str[i]!=‘\0‘)
    {
        if (str[i]==c)
        {
            return 1
;
        }
        i++;
    }

    return 0;
    //方法3:
    int i=-1;
    while (str[++i]!=‘\0‘)
    {
        if (str[i]==c)
        {
            return 1
;
        }
    }

    //方法4:
    while (str[++i]!=‘\0‘&&str[i]!=c);

     //return str[i] == ‘\0’?0:1;
    return str[i]!=‘\0‘;
}

字符串查找相同字母代码

标签:style   color   io   os   ar   for   div   sp   代码   

原文地址:http://www.cnblogs.com/Alling/p/3971402.html

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