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
// @Title: 划分字母区间 (Partition Labels)
// @Author: 15816537946@163.com
// @Date: 2019-11-18 10:18:33
// @Runtime: 0 ms
// @Memory: 2.4 MB
func partitionLabels(S string) []int {
	maxIndex := [26]int{}
	for i, v := range S {
		maxIndex[v-'a'] = i
	}

	begin := 0
	end := maxIndex[S[begin] - 'a']
	res := make([]int, 0, len(S))

	for i, v := range S {
		if i < end {
			end = max(end, maxIndex[v-'a'])
			continue
		}

		res = append(res, i-begin+1)
		begin = i + 1
		if begin < len(S) {
			end = maxIndex[S[begin]-'a']
		}
	}

	return res

}

func max(a,b int) int {
	if a > b {
		return a
	}
	return b
}
/*
func partitionLabels(S string) []int {
	maxIndex := [26]int{}
	for i, v := range S {
		maxIndex[v-'a'] = i
	}


	end := maxIndex[S[begin]-'a']
	res  := make([]int, 0, len(S))

	for i,v := range S {
		if i < end {
			end = max(end, maxIndex[v-'a'])
			continue
		}

		res = append(res, i-begin+1)
		begin = i+1
		if begin < len(S) {
			end = maxIndex[S[begin]-'a']
		}
	}

	return res
}

func max(a, b int) int {
	if a > b {
		return a
	}
	return b
}
*/