LeetCode p28 Implement strStr() 题解
1.题目:
Implement strStr().
Returns the index of the first occurrence of needle in haystack, or -1 if needle is not part of haystack.
题意:
输入两个字符串判断第一个字符串里面是否包含第二个字符串。
2.解题思路:
见代码
3.代码
1 |
|
很高兴遇见你~
Implement strStr().
Returns the index of the first occurrence of needle in haystack, or -1 if needle is not part of haystack.
题意:
输入两个字符串判断第一个字符串里面是否包含第二个字符串。
见代码
1 |
|