首页 > 代码库 > LeetCode Implement strStr()
LeetCode Implement strStr()
Implement strStr().
Returns a pointer to the first occurrence of needle in haystack, or null if needle is not part of haystack.
输入两个字符串,如果第二个是第一个的字串返回该串在第一个字符串开始的的子串。
比如abcd bc
则返回bcd
如果没有找到返回null
思路:
用Java轻松水过,用indexOf方法可得到是否有子串与子串的起始标记,
用substring得到从index开始的子串
public class Solution { public String strStr(String haystack, String needle) { int index; index = haystack.indexOf(needle); if(index==-1) return null; else return haystack.substring(index); } }
LeetCode Implement strStr()
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。