-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path844.cpp
42 lines (34 loc) · 770 Bytes
/
844.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
33
34
35
36
37
38
39
40
41
42
class Solution {
public:
bool backspaceCompare(string S, string T) {
stack<char>S1;
stack<char>S2;
int i=0;
int j=0;
while(i<S.length())
{
if(!S1.empty() && S[i]=='#')
{
S1.pop();
}
if(S[i]!='#')
{
S1.push(S[i]);
}
i++;
}
while(j<T.length())
{
if(!S2.empty() && T[j]=='#')
{
S2.pop();
}
if(T[j]!='#')
{
S2.push(T[j]);
}
j++;
}
return (S1==S2);
}
};