Implement strStr().
实现 strStr() 函数。
Given two strings needle and haystack, return the index of the first occurrence of needle in haystack, or -1 if needle is not part of haystack.
给你两个字符串 haystack 和 needle ,请你在 haystack 字符串中找出 needle 字符串出现的第一个位置(下标从 0 开始)。如果不存在,则返回 -1 。
Clarification:
说明:
What should we return when needle is an empty string? This is a great question to ask during an interview.
当 needle 是空字符串时,我们应当返回什么值呢?这是一个在面试中很好的问题。
For the purpose of this problem, we will return 0 when needle is an empty string. This is consistent to C's strstr() and Java's indexOf().
对于本题而言,当 needle 是空字符串时我们应当返回 0 。这与 C 语言的 strstr() 以及 Java 的 indexOf() 定义相符。
Example 1:
Input: haystack = "hello", needle = "ll"
Output: 2
示例 1:
输入:haystack = "hello", needle = "ll"
输出:2
Example 2:
Input: haystack = "aaaaa", needle = "bba"
Output: -1
示例 2:
输入:haystack = "aaaaa", needle = "bba"
输出:-1
Constraints:
1 <= haystack.length, needle.length <=
haystack and needle consist of only lowercase English characters.
提示:
1 <= haystack.length, needle.length <=
haystack 和 needle 仅由小写英文字符组成
C语言:
int strStr(char * haystack, char * needle){
int h=0,n=0;
for(h=0;;h++)
{
if(haystack[h]=='\0')
break;
}
for(n=0;;n++)
{
if(needle[n]=='\0')
break;
}
for(int i=0;i+n<=h;i++)
{
bool flag=true;
for(int j=0;j<n;j++)
{
if(haystack[i+j]!=needle[j])
{
flag=false;
break;
}
}
if(flag)
{
return i;
}
}
return -1;
}
执行结果: 通过
执行用时:0 ms, 在所有 C 提交中击败了100.00%的用户
内存消耗:5.6 MB, 在所有 C 提交中击败了42.55%的用户
通过测试用例:75 / 75
本文介绍了如何实现C语言版本的`strStr()`函数,该函数用于在一个字符串中查找另一个字符串的第一个出现位置。示例展示了在不同情况下,如找到目标字符串和未找到的情况下的返回值。文章还讨论了当目标字符串为空时的处理策略,即返回0。代码通过了所有测试用例,具有良好的时间和空间效率。
632

被折叠的 条评论
为什么被折叠?



