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

leetcode-----28. 实现 strStr()

时间:2020-06-20 15:41:20      阅读:35      评论:0      收藏:0      [点我收藏+]

标签:imp   实现   ems   ble   strstr   http   stack   tac   als   

代码

class Solution {
public:
    int strStr(string haystack, string needle) {
        int n = haystack.size();
        int m = needle.size();

        for (int i = 0; i < n - m + 1; ++i) {
            bool flag = true;
            for (int j = 0; j < m; ++j) {
                if (haystack[i + j] != needle[j]) {
                    flag = false;
                    break;
                }
            }
            if (flag) {
                return i;
            }
        }
        return -1;
    }
};

leetcode-----28. 实现 strStr()

标签:imp   实现   ems   ble   strstr   http   stack   tac   als   

原文地址:https://www.cnblogs.com/clown9804/p/13168855.html

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