[LeetCode] Implement strStr()

Implement strStr().

Returns a pointer to the first occurrence of needle in haystack, or null if needle is not part of haystack.

1. 暴力比较,过慢,无法通过大数据集合

class Solution {
public:
    char *strStr(char *haystack, char *needle) {
        // Start typing your C/C++ solution below
        // DO NOT write int main() function
        int hLength = strlen(haystack);
        int nLength = strlen(needle);
        
        int ti;
        
        if(nLength==0 )
            return haystack;
        
        for(int i=0;i<hLength; i++)
        {
            ti=i;
            
            int j=0;
            while(j< nLength && haystack[i]==needle[j])
            {
                i++;
                j++;
                if(j==nLength)
                    return (haystack+ti);
            }
            
            i=ti;
            
        }
        
        return NULL;
    }
};

2. KMP算法

class Solution {
public:
    char *strStr(char *haystack, char *needle) {
        // Start typing your C/C++ solution below
        // DO NOT write int main() function
        if(!strlen(needle)) return haystack;  
        if(!strlen(haystack)) return NULL;  
        
        int nLength=strlen(needle);
        vector<int> preFix(nLength);
        
        compPrefix(needle,preFix,nLength);
        return matchStr(haystack,needle,preFix);
    }
    
    void compPrefix(char *needle,vector<int> &prefix, int length)
    {
        if(length==0) return;
        prefix[0]=-1;
        int k=-1;//the number of longest match of the prefix and the postfix
        
        for(int i=1;i<length;i++)
        {
            while(k>-1 && needle[k+1]!=needle[i])//try to further match. If failed, scan backward 
            {
                k=prefix[k];
            }
            if(needle[k+1]==needle[i]) //further match succeed. 
                k++;
            prefix[i]=k;
        }
    }
    
    char *matchStr(char *haystack, char* needle, vector<int> &prefix)
    {
        int k=-1;//current match index
        for(int j=0;j<strlen(haystack);j++)
        {
            while(k>-1 && haystack[j]!=needle[k+1])
                k=prefix[k];
            
            if(needle[k+1]==haystack[j])
                k++;
                
            if(k==strlen(needle)-1) return haystack+j-k;
        }
        return NULL;
    }
};


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值