題目描述
實現 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() 定義相符。
解題思路
雙指針法:另一個指針為慢指針i,一個指針為i+子字符串的長度,
然后遍歷字符串,利用subString(i,i+length)和子字符串做比較,如果相等則返回i
代碼如下
class Solution { public int strStr(String haystack, String needle) { if (needle.equals("")) { return 0; }else if (haystack.equals("")) { return -1; }else { if (haystack.equals(needle)) { return 0; } int lenght=needle.length(); for (int i = 0; i < haystack.length()-lenght+1; i++) { if (haystack.substring(i, i+lenght).equals(needle)) { return i; } } } return -1; } }