1. 程式人生 > >[Leetcode] 28. 實現strStr() java (超簡單高效方法)

[Leetcode] 28. 實現strStr() java (超簡單高效方法)

 實現 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() 定義相符。

indexOf() 函式。

Java中字串中子串的查詢共有四種方法,如下:
1、int indexOf(String str) :返回第一次出現的指定子字串在此字串中的索引。 
2、int indexOf(String str, int startIndex):從指定的索引處開始,返回第一次出現的指定子字串在此字串中的索引。 
3、int lastIndexOf(String str) :返回在此字串中最右邊出現的指定子字串的索引。 
4、int lastIndexOf(String str, int startIndex) :從指定的索引處開始向後搜尋,返回在此字串中最後一次出現的指定子字串的索引。

class Solution {
    public int strStr(String haystack, String needle) {
        return haystack.indexOf(needle);
    }
}

結果: