-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathSimplify Path (leetcode).cpp
76 lines (58 loc) · 1.96 KB
/
Simplify Path (leetcode).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
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
#include<bits/stdc++.h>
#define speed ios_base::sync_with_stdio(false)
#define boost cin.tie(NULL)
#define booster cout.tie(NULL)
#define endl "\n"
typedef long long int lld;
#define F(a,n) for(int i=0;i<n;i++){cin>>a[i];}
#define F1(a,n) for(int i=1;i<=n;i++){cin>>a[i];}
#define P(a,n) for(int i=0;i<n;i++){cout<<a[i]<<' ';}cout<<endl;
#define P1(a,n) for(int i=1;i<=n;i++){cout<<a[i]<<' ';}cout<<endl;
#define NF(a,n,m) for(int i=0;i<n;i++){for(int j=0;j<m;j++){cin>>a[i][j];}}
#define NF1(a,n,m) for(int i=1;i<=n;i++){for(int j=1;j<=m;j++){cin>>a[i][j];}}
#define PNF(a,n,m) for(int i=0;i<n;i++){for(int j=0;j<m;j++){cout<<a[i][j]<<' ';}cout<<endl;}cout<<endl;
#define PNF1(a,n,m) for(int i=1;i<=n;i++){for(int j=1;j<=m;j++){cout<<a[i][j]<<' ';}cout<<endl;}cout<<endl;
using namespace std;
class Solution {
public:
string simplifyPath(string path) {
stack<char> st;
int len= path.length();
for(int i=0;i<len;i++){
if(!st.empty() && path[i]=='/' && st.top()=='/')
continue;
else if(path[i]=='.'){
if(i+1<len && path[i+1]=='.'){
i++;
if(st.size()==1)
continue;
st.pop();
while(st.top() != '/' )
st.pop();
}
}
else
st.push(path[i]);
}
int siz= st.size();
if(st.top()=='/' && siz != 1){
st.pop();
siz--;
}
char ch[siz+1];
for(int i=siz-1;i>=0;i--){
ch[i]= st.top();
st.pop();
}
ch[siz]='\0';
string result(ch);
return result;
}
};
int main(){
string s;
cin>>s;
Solution sol;
cout<<sol.simplifyPath(s)<<endl;
return 0;
}