LeetCode : 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第一次出现的位置:

class Solution{
public:
    int strStr(string haystack, string needle) {
        if (needle.length() == 0)
            return 0;
        if (haystack.length() < needle.length())
            return -1;
        for (int i = 0; i<haystack.length(); ++i){
            int j;
            for (j = 0; j<needle.length(); ++j){
                if (haystack[i + j] != needle[j])
                    break;
            }
            if (j == needle.length())
                return i;
        }
        return -1;
    }
};
原文地址:https://www.cnblogs.com/chankeh/p/6850050.html