-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path0028-strStr.go
64 lines (58 loc) · 1.27 KB
/
0028-strStr.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
package main
import (
"fmt"
)
//给定一个 haystack 字符串和一个 needle 字符串,
//在 haystack 字符串中找出 needle 字符串出现的第一个位置 (从0开始)。
//如果不存在,则返回 -1。
//当 needle 是空字符串时返回 0 。
//使用传统每个字符进行比较
//需要考虑的因素,如果出现没有匹配成功,则重置target,从target+1开始重新进行匹配
func strStr(haystack string, needle string) int {
if len(needle) == 0 {
return 0
}
flag := false
target := -1
for i := 0; i < len(haystack); i++ {
if !flag {
if needle[0] == haystack[i] {
flag = true
target = i
}
}
if flag {
if len(haystack)-target < len(needle) {
return -1
}
if haystack[i] != needle[i-target] {
flag = false
i = target
target = -1
}
if target != -1 {
if i-target+1 == len(needle) {
break
}
}
}
}
return target
}
//使用内置的slice方式比较
func strStrFast(haystack string, needle string) int {
hlen, nlen := len(haystack), len(needle)
for i := 0; i <= hlen-nlen; i++ {
if haystack[i:i+nlen] == needle {
return i
}
}
return -1
}
func testStrStr() {
//"mississippi"
//"issip"
haystack := "mississippi"
needle := "sipp"
fmt.Println(strStrFast(haystack, needle))
}