forked from wufenggirl/LeetCode-in-Golang
-
Notifications
You must be signed in to change notification settings - Fork 0
/
restore-ip-addresses.go
executable file
·86 lines (71 loc) · 1.36 KB
/
restore-ip-addresses.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
package problem0093
import (
"fmt"
)
func restoreIpAddresses(s string) []string {
n := len(s)
if n < 4 || n > 12 {
return []string{}
}
res := []string{}
combination := make([]string, 4)
var dfs func(int, int)
dfs = func(idx, begin int) {
if idx == 3 {
temp := s[begin:]
if isOK(temp) {
combination[3] = temp
res = append(res, IP(combination))
}
return
}
// 剩余 IP 段,最多需要的宽度
maxRemain := 3 * (3 - idx)
for end := begin + 1; end <= n-(3-idx); end++ {
if end+maxRemain < n {
// 后面的 IP 段 至少有一个超过了 3 个字符
// 说明此IP段短了
continue
}
if end-begin > 3 {
// 此 IP 段长度,超过 3 位了
break
}
temp := s[begin:end]
if isOK(temp) {
combination[idx] = temp
dfs(idx+1, end)
}
}
}
dfs(0, 0)
return res
}
// IP 返回 s 代表的 IP 地址
func IP(s []string) string {
return fmt.Sprintf("%s.%s.%s.%s", s[0], s[1], s[2], s[3])
}
// 由程序其他部分保证了 len(s) <= 3
func isOK(s string) bool {
// "0" 可以
// "01" 不可以
if len(s) > 1 && s[0] == '0' {
return false
}
if len(s) < 3 {
return true
}
// len(s) == 3
switch s[0] {
case '1':
return true
case '2':
if '0' <= s[1] && s[1] <= '4' {
return true
}
if s[1] == '5' && '0' <= s[2] && s[2] <= '5' {
return true
}
}
return false
}