Implement strStr()

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Implement strStr()相关的知识,希望对你有一定的参考价值。

package cn.edu.xidian.sselab.string;

/**
 *
 * @author zhiyong wang
 * title: Implement strStr()
 * content:
 *  Implement strStr().
 *  
 *  Returns the index of the first occurrence of needle in haystack, or -1 if needle is not part of haystack.
 *
 */
public class ImplementStrStr {
    //这个题非常简单,就是一个求索引下标的题目,会用indexOf即可
    public int strStr(String haystack, String needle){
        if(haystack == null || needle == null) return -1;
         return haystack.indexOf(needle);
    }
}

以上是关于Implement strStr()的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode 28. Implement strStr()

28. Implement strStr()

Implement strStr() LeetCode Java

Implement strStr()

[LeetCode] 28. Implement strStr() 实现strStr()函数

28. Implement strStr()