-
Notifications
You must be signed in to change notification settings - Fork 154
/
Copy pathmap-sum-pairs.js
83 lines (71 loc) · 1.72 KB
/
map-sum-pairs.js
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
/**
* Implement a MapSum class with insert, and sum methods.
*
* For the method insert, you'll be given a pair of (string, integer).
* The string represents the key and the integer represents the value.
* If the key already existed, then the original key-value pair will
* be overridden to the new one.
*
* For the method sum, you'll be given a string representing the prefix,
* and you need to return the sum of all the pairs' value whose key starts with the prefix.
*
* Example 1:
* Input: insert("apple", 3), Output: Null
* Input: sum("ap"), Output: 3
* Input: insert("app", 2), Output: Null
* Input: sum("ap"), Output: 5
*/
class TrieNode {
constructor() {
this.children = {};
this.val = null;
}
}
/**
* Initialize your data structure here.
*/
class MapSum {
constructor() {
this.root = new TrieNode();
}
/**
* @param {string} key
* @param {number} val
* @return {void}
*/
insert(key, val) {
let current = this.root;
for (let i = 0; i < key.length; i++) {
const c = key[i];
if (!current.children[c]) {
current.children[c] = new TrieNode();
}
current = current.children[c];
}
current.val = val;
}
/**
* @param {string} prefix
* @return {number}
*/
sum(prefix) {
let current = this.root;
for (let i = 0; i < prefix.length; i++) {
const c = prefix[i];
if (current.children[c]) {
current = current.children[c];
} else {
return 0;
}
}
return this.dfs(current);
}
dfs(current) {
let sum = current.val === null ? 0 : current.val;
Object.keys(current.children).forEach(c => {
sum += this.dfs(current.children[c]);
});
return sum;
}
}
export default MapSum;