[LintCode] 字符串查找

简介: 暴力解法(O(mn)): 1 class Solution { 2 public: 3 /** 4 * Returns a index to the first occurrence of target in source, 5 * or -1 if target is not part of source.

暴力解法(O(mn)):

 1 class Solution {
 2 public:
 3     /**
 4      * Returns a index to the first occurrence of target in source,
 5      * or -1  if target is not part of source.
 6      * @param source string to be scanned.
 7      * @param target string containing the sequence of characters to match.
 8      */
 9     int strStr(const char *source, const char *target) {
10         // write your code here
11         if (!source || !target) return -1;
12         int m = strlen(source), n = strlen(target);
13         for (int i = 0; i < m - n + 1; i++) {
14             int j = 0;
15             for (; j < n; j++)
16                 if (source[i + j] != target[j])
17                     break;
18             if (j == n) return i;
19         }
20         return -1;
21     }
22 };

KMP(O(m + n)):

 

 1 class Solution {
 2 public:
 3     /**
 4      * Returns a index to the first occurrence of target in source,
 5      * or -1  if target is not part of source.
 6      * @param source string to be scanned.
 7      * @param target string containing the sequence of characters to match.
 8      */
 9     int strStr(const char *source, const char *target) {
10         // write your code here
11         if (!source || !target) return -1;
12         int m = strlen(source), n = strlen(target);
13         if (!n) return 0;
14         vector<int> lps = kmpProcess(target);
15         for (int i = 0, j = 0; i < m; ) {
16             if (source[i] == target[j]) {
17                 i++;
18                 j++;
19             }
20             if (j == n) return i - j;
21             if (i < m && source[i] != target[j]) {
22                 if (j) j = lps[j - 1];
23                 else i++;
24             }
25         }
26         return -1;
27     }
28 private:
29     vector<int> kmpProcess(const char* target) {
30         int n = strlen(target);
31         vector<int> lps(n, 0);
32         for (int i = 1, len = 0; i < n; ) {
33             if (target[i] == target[len])
34                 lps[i++] = ++len;
35             else if (len) len = lps[len - 1];
36             else lps[i++] = 0;
37         }
38         return lps;
39     }
40 };

 

目录
相关文章
|
8月前
|
Python
python实现字符串反转。
python实现字符串反转。
58 1
|
7月前
|
人工智能 算法 BI
【洛谷 P1803】凌乱的yyy _ 线段覆盖 题解(贪心算法+结构体排序)
**线段覆盖问题**: YYY 想在 NOIP 前参加最多比赛。给定 $n$ 场比赛的开始和结束时间,每场比赛必须连续且不能冲突。输入包含每场比赛的时间段,输出最多可参加的比赛数。$20\%$ 数据 $n\leq10$,$50\%$ 数据 $n\leq10^3$,$100\%$ 数据 $n\leq10^6$。解决方案:按结束时间排序比赛,若当前比赛开始时间晚于上一个结束时间,则计数加一。样例输入:3 场比赛,输出:2。AC C++ 代码实现了此算法。
46 0
|
算法
代码随想录算法训练营第八天 | LeetCode 344.反转字符串、541. 反转字符串II、剑指Offer 05.替换空格、151.翻转字符串里的单词、剑指Offer58-II.左旋转字符串
代码随想录算法训练营第八天 | LeetCode 344.反转字符串、541. 反转字符串II、剑指Offer 05.替换空格、151.翻转字符串里的单词、剑指Offer58-II.左旋转字符串
66 0
|
算法 索引
代码随想录算法训练营第八天 | 344.反转字符串541. 反转字符串II 剑指Offer 05.替换空格151.翻转字符串里的单词剑指Offer58-II.左旋转字符串
代码随想录算法训练营第八天 | 344.反转字符串541. 反转字符串II 剑指Offer 05.替换空格151.翻转字符串里的单词剑指Offer58-II.左旋转字符串
lintcode 415 有效回文串
用String下的spilt(regex)去除除英文外的符号,regex是正则表达式,[]内写要删除的符号,但返回值是一个String型数组。
|
Java C++
代码随想录刷题|LeetCode 344.反转字符串 541. 反转字符串II 剑指Offer 05.替换空格 151.反转字符串里的单词 剑指Offer58-II.左旋转字符串
代码随想录刷题|LeetCode 344.反转字符串 541. 反转字符串II 剑指Offer 05.替换空格 151.反转字符串里的单词 剑指Offer58-II.左旋转字符串
代码随想录刷题|LeetCode 344.反转字符串 541. 反转字符串II 剑指Offer 05.替换空格 151.反转字符串里的单词 剑指Offer58-II.左旋转字符串
|
存储 算法 索引
代码随想录刷题|LeetCode KMP算法理论 28. 实现 strStr() 459.重复的子字符串
代码随想录刷题|LeetCode KMP算法理论 28. 实现 strStr() 459.重复的子字符串
代码随想录刷题|LeetCode KMP算法理论 28. 实现 strStr() 459.重复的子字符串
|
算法
每日一题之字符串哈希
大家好,我是泡泡,给大家带来每日一题的目的是为了更好的练习算法,我们的每日一题这个月进度是数据结构,让大家练到各种各样的数据结构题目,熟悉数据结构的增删改查,一年以后,蜕变成为一个不一样的自己!
151 0
每日一题之字符串哈希
|
算法 PHP
剑指Offer算法题解:05. 替换空格
剑指Offer算法题解:05. 替换空格
101 0

热门文章

最新文章

下一篇
开通oss服务