首页 > 编程语言 > 详细

[C++] Implement strStr()

时间:2017-12-15 22:12:55      阅读:247      评论:0      收藏:0      [点我收藏+]
 

Implement strStr().

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

Example 1:

Input: haystack = "hello", needle = "ll"
Output: 2

Example 2:

Input: haystack = "aaaaa", needle = "bba"
Output: -1

strstr()函数返回匹配的首字符索引。

可以使用常规的匹配算法,蛮力算法

遍历haystack到m-n+1的同时遍历needle从0到n,while来判断两个string对应字符是否相等。

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

 

[C++] Implement strStr()

原文:http://www.cnblogs.com/immjc/p/8044847.html

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