首页 > 其他 > 详细

28. Implement strStr()

时间:2017-07-19 19:54:05      阅读:213      评论:0      收藏:0      [点我收藏+]

Implement strStr().

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

 

 

字符串Rabin--Karp算法。滚动哈希,时间复杂度o(n+m),觉得比kmp好写

class Solution {
public:
    const unsigned long long T = 100000007;
    int strStr(string haystack, string needle) {
        typedef unsigned long long ull;
        int al = needle.length();
        int bl = haystack.length();
        if (al > bl) return -1;
        ull A = 0;
        ull B = 0;
        ull t = 1;
        for (int i = 0; i < al; ++i) {
            A = A * T + needle[i];
            B = B * T + haystack[i];
            t *= T;
        }
        //cout << A << " "<<B<<endl;
        for (int i = 0; i + al <= bl; ++i) {
            if (A == B) return i;
            if (i + al < bl) B = B * T - t * haystack[i] + haystack[i + al];
        }
        return -1;
    }
};

 

28. Implement strStr()

原文:http://www.cnblogs.com/pk28/p/7207550.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!