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

leetCode 28. Implement strStr() 字符串

时间:2016-08-11 07:29:51      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:字符串

28. Implement strStr()

Implement strStr().

Returns the index of the first occurrence of needle in haystack, or -1 if needle is not part of haystack.


haystack中找与needle 第一个相匹配的位置。如果找不到,返回-1。

代码如下:

class Solution {
public:
    int strStr(string haystack, string needle) {
        if(haystack.size() == 0 && needle.size() == 0)
            return 0;
        if(needle.size() == 0)
            return 0;
        if(haystack.size() < needle.size())
            return -1;
        for(int i = 0;i < haystack.size() - needle.size() + 1;i++)
        {
            bool flag = true;
            if(needle[0] == haystack[i])
            {
                int j = 0;
                for(; j < needle.size();j++)
                {
                    if(needle[j] != haystack[i+j])
                    {
                        flag = false;
                        break;
                    }
                        
                }
                if(flag)
                    return i;
            }
        }
        return -1;
    }
};

2016-08-11 01:02:49

本文出自 “做最好的自己” 博客,请务必保留此出处http://qiaopeng688.blog.51cto.com/3572484/1836727

leetCode 28. Implement strStr() 字符串

标签:字符串

原文地址:http://qiaopeng688.blog.51cto.com/3572484/1836727

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