-
-
Notifications
You must be signed in to change notification settings - Fork 8.9k
/
Copy pathSolution.go
52 lines (45 loc) · 860 Bytes
/
Solution.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
type trie struct {
children [26]*trie
val int
}
func (t *trie) insert(w string, x int) {
for _, c := range w {
c -= 'a'
if t.children[c] == nil {
t.children[c] = &trie{}
}
t = t.children[c]
t.val += x
}
}
func (t *trie) search(w string) int {
for _, c := range w {
c -= 'a'
if t.children[c] == nil {
return 0
}
t = t.children[c]
}
return t.val
}
type MapSum struct {
d map[string]int
t *trie
}
func Constructor() MapSum {
return MapSum{make(map[string]int), &trie{}}
}
func (this *MapSum) Insert(key string, val int) {
x := val - this.d[key]
this.d[key] = val
this.t.insert(key, x)
}
func (this *MapSum) Sum(prefix string) int {
return this.t.search(prefix)
}
/**
* Your MapSum object will be instantiated and called as such:
* obj := Constructor();
* obj.Insert(key,val);
* param_2 := obj.Sum(prefix);
*/