题目描述:
实现 strStr( ) 函数。
给定一个 haystack 字符串和一个 needle 字符串,在 haystack 字符串中找出 needle 字符串出现的第一个位置 (从0开始)。如果不存在,则返回-1。
示例 :
输入: haystack = "hello", needle = "ll" 输出: 2
方法分析:输入: haystack = "aaaaa", needle = "bba" 输出: -1
该题十分简单,直接调用 indexOf 方法即可。当然,我们可以在此基础上判断一下 needle 是否为空,如果为空,则返回0.
要查看 indexOf 方法的使用,请查看
https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Global_Objects/String/indexOf 。
代码实现:
var strStr = function(haystack, needle) {
//判断查询字符串是否为空
if (!needle) {
return 0;
}
//调用indexOf函数返回子串的位置
return haystack.indexOf(needle);
};
代码解析:
代码本身很简单,只是我们最好考虑一下子串为空的情况;在不同的场景下,我们可能期望其返回不同的结果,可能为 -1 ,可能为0,也有可能是其他值,故需要额外判断。
【LeetCode 28题 实现strStr() -- JavaScript】该算法的时间复杂度为:O(n)
相关链接:https://leetcode-cn.com/problems/implement-strstr/description/
推荐阅读
- 数据结构与算法|【算法】力扣第 266场周赛
- leetcode|今天开始记录自己的力扣之路
- Python|Python 每日一练 二分查找 搜索旋转排序数组 详解
- 【LeetCode】28.实现strstr() (KMP超详细讲解,sunday解法等五种方法,java实现)
- LeetCode-35-搜索插入位置-C语言
- leetcode python28.实现strStr()35. 搜索插入位置
- Leetcode Permutation I & II
- python|leetcode Longest Substring with At Most Two Distinct Characters 滑动窗口法
- LeetCode 28 Implement strStr() (C,C++,Java,Python)
- Python|Python Leetcode(665.非递减数列)