28. Implement strStr()
Posted Machelsky
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了28. Implement strStr()相关的知识,希望对你有一定的参考价值。
Implement strStr().
Returns the index of the first occurrence of needle in haystack, or -1 if needle is not part of haystack.
思路:对应检查char是否一样,不一样直接跳出检查下一组。用boolean来判断这组是不是符合,如果符合直接输出。
119/145
public class Solution { public int strStr(String haystack, String needle) { if(haystack==null&&needle==null||haystack.length()<needle.length()){ return -1; } for(int i=0;i<=haystack.length()-needle.length();i++){ boolean check=true; for(int j=0;j<needle.length();j++){ if(needle.charAt(j)!=haystack.charAt(i+j)){ check=false; break; } } if(check==true){ return i; } } return -1; } }
以上是关于28. Implement strStr()的主要内容,如果未能解决你的问题,请参考以下文章
leetcode 28. Implement strStr() 实现strStr()