28. Implement strStr()实现 strStr()

本文介绍了如何实现C语言版本的`strStr()`函数,该函数用于在一个字符串中查找另一个字符串的第一个出现位置。示例展示了在不同情况下,如找到目标字符串和未找到的情况下的返回值。文章还讨论了当目标字符串为空时的处理策略,即返回0。代码通过了所有测试用例,具有良好的时间和空间效率。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

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 <= 10^{4}
haystack and needle consist of only lowercase English characters.

提示:

1 <= haystack.length, needle.length <= 10^{4}
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

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值