forked from shuboc/LeetCode-2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdecode-string.cpp
32 lines (31 loc) · 845 Bytes
/
decode-string.cpp
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
// Time: O(n)
// Space: O(h), h is the depth of the recursion
class Solution {
public:
string decodeString(string s) {
string curr;
stack<int> nums;
stack<string> strs;
int n = 0;
for (const auto& c: s) {
if (isdigit(c)) {
n = n * 10 + c - '0';
} else if (c == '[') {
nums.emplace(n);
n = 0;
strs.emplace(curr);
curr.clear();
} else if (c == ']') {
for (; nums.top() > 0; --nums.top()) {
strs.top() += curr;
}
nums.pop();
curr = strs.top();
strs.pop();
} else {
curr += c;
}
}
return strs.empty() ? curr : strs.top();
}
};