LeetCode实现 strStr()——C

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/implement-strstr

一、题目描述

实现 strStr() 函数。
给定一个 haystack 字符串和一个 needle 字符串,在 haystack 字符串中找出 needle 字符串出现的第一个位置 (从0开始)。如果不存在,则返回 -1。

示例 1:
输入: haystack = "hello", needle = "ll"
输出: 2

示例 2:
输入: haystack = "aaaaa", needle = "bba"
输出: -1

说明:
当 needle 是空字符串时,我们应当返回什么值呢?这是一个在面试中很好的问题。
对于本题而言,当 needle 是空字符串时我们应当返回 0 。这与C语言的 strstr() 以及 Java的 indexOf() 定义相符。

二、题解

KMP算法:第一层循环 haystack 向后移位,第二层循环比较 needle 与 haystack 对应字符是否相等。

int strStr(char* haystack, char* needle) {
	if (needle[0] == '\0') {		//needle 为空返回 0 
		return 0;
	}

	int len1 = strlen(haystack);	//获取字符串长度 
	int len2 = strlen(needle);

	if (len2 > len1) {				 
		return -1;
	}

	int i;							//定义长度差,needle最多移几次 
	int j;							//比较是否相等 
	for (i = 0; i <= (len1 - len2); i++) {
		for (j = 0; j < len2; j++) {
			if (haystack[i + j] != needle[j]) {
				break;				//一个不相等就退出 
			}
		}
		if (j == len2) {			//完全包括,返回相等开始的下标 
			return i;
		}
	}

	return -1;
}

三、调试

#include <stdio.h> 
#include <malloc.h>
#include <string.h> 

int strStr(char* haystack, char* needle) {
}

int main() {
	char* haystack = (char*)malloc(sizeof(char) * 100);
	char* needle = (char*)malloc(sizeof(char) * 100);
	printf("请输入 haystack: ");
	scanf("%s", haystack);
	printf("请输入 needle  : ");
	scanf("%s", needle);

	int n = strStr(haystack, needle);
	printf("%d", n);

	return 0;
}

四、结果

1、调试结果
在这里插入图片描述

2、提交结果
在这里插入图片描述

发布了113 篇原创文章 · 获赞 109 · 访问量 11万+

猜你喜欢

转载自blog.csdn.net/weixin_42109012/article/details/103412505