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

Implement strStr()_LeetCode

时间:2017-12-04 00:14:47      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:ret   .com   imp   return   put   http   rip   output   out   

Description:

Implement strStr().

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

Example 1:

Input: haystack = "hello", needle = "ll"
Output: 2

 

Example 2:

Input: haystack = "aaaaa", needle = "bba"
Output: -1

算法思想:
通过两重循环来遍历。
外层循环的长度为m-n。

代码:
class Solution {
public:
    int strStr(string haystack, string needle) {
         int m = haystack.length();
         int n = needle.length();
        if (n == 0) {
            return 0;
        }
        for (int i = 0; i < m - n + 1; i++) {
            int j = 0;
            for (; j < n; j++)
                if (haystack[i + j] != needle[j])
                    break;
            if (j == n) 
                return i;
        }
        return -1;
    }
};

 



Implement strStr()_LeetCode

标签:ret   .com   imp   return   put   http   rip   output   out   

原文地址:http://www.cnblogs.com/SYSU-Bango/p/7967865.html

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