forked from AnasImloul/Leetcode-Solutions
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDecode String.cpp
More file actions
36 lines (36 loc) · 856 Bytes
/
Decode String.cpp
File metadata and controls
36 lines (36 loc) · 856 Bytes
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
class Solution {
public:
string decodeString(string s) {
stack<string> strstk;
stack<int> freq;
string curstr;
int k=0;
for(char c:s)
{
if(isdigit(c))
k=k*10+(c-'0');
else if(isalpha(c))
curstr.push_back(c);
else if(c=='[')
{
freq.push(k);
strstk.push(curstr);
curstr.clear();
k=0;
}
else if(c==']')
{
string temp=curstr;
curstr=strstk.top();
strstk.pop();
int fre=freq.top();
freq.pop();
while(fre--)
{
curstr+=temp;
}
}
}
return curstr;
}
};