本文主要是介绍Leetcode: Implement strStr(),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
题目要求:
mplement strStr().
Returns the index of the first occurrence of needle in haystack, or -1 if needle is not part of haystack.
这道题是一个字符匹配问题,可以采用KMP算法。
下面是采用一般方法的解答:
class Solution
{
public:int strStr(char *haystack, char *needle){int i,j; for (i = j = 0; haystack[i] && needle[j];) { if (haystack[i] == needle[j]) { ++i; ++j; } else { i = i - j + 1; j = 0; } } return needle[j] ? -1 : i - j;}
};
这篇关于Leetcode: Implement strStr()的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!