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

使用双指针暴力解决力扣28题《实现 strStr()》

时间:2020-03-24 15:52:45      阅读:88      评论:0      收藏:0      [点我收藏+]

标签:使用   break   bre   lan   tac   turn   双指针   ++   public   

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

时间复杂度 $O(M*N)$

使用双指针暴力解决力扣28题《实现 strStr()》

标签:使用   break   bre   lan   tac   turn   双指针   ++   public   

原文地址:https://www.cnblogs.com/flying_bat/p/12559325.html

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