您的位置:首页 > 其它

leetcode28

2017-07-31 22:52 127 查看
题目链接:https://leetcode.com/problems/implement-strstr/

Implement strStr().

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

思路:按照简单的做可以很简单,就是找一个字符串中是否包含另一个字符串,并返回其位置。按照复杂的做那么就是KMP了, 所以 看出题人的意思了.

代码如下:

[cpp]
view plain
copy

print?

class Solution {  
public:  
    int strStr(string haystack, string needle) {  
        int i = -1, len1 = haystack.size(), len2 = needle.size();  
        while(++i <= len1-len2)  
        {  
            string tem = haystack.substr(i, len2);  
            if(tem == needle) return i;  
        }  
        return -1;  
    }  
};  

class Solution {
public:
int strStr(string haystack, string needle) {
int i = -1, len1 = haystack.size(), len2 = needle.size();
while(++i <= len1-len2)
{
string tem = haystack.substr(i, len2);
if(tem == needle) return i;
}
return -1;
}
};

KMP

[cpp]
view plain
copy

print?

class Solution {  
public:  
    int strStr(string haystack, string needle) {  
        int i, k = 0, len1 = haystack.size(), len2 = needle.size();  
        if(len2==0 || haystack == needle) return 0;  
        vector<int> index(len2, 0);  
        for(i = 1; i < len2; i++)  
        {  
            while(k>0 && needle[i]!=needle[k]) k = index[k-1];  
            index[i] = (k+=needle[i]==needle[k]);  
        }  
        for(i = 0, k = 0; i < len1; i++)  
        {  
            while(k>0 && haystack[i]!=needle[k]) k = index[k-1];  
            k += needle[k] == haystack[i];  
            if(k == len2) return i-len2+1;  
        }  
        return -1;  
    }  
}; 

转自小榕流光的博客
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: