-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path71.simplify-path.java
More file actions
39 lines (32 loc) · 1009 Bytes
/
Copy path71.simplify-path.java
File metadata and controls
39 lines (32 loc) · 1009 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
37
38
39
class Solution {
public String simplifyPath(String path) {
String[] inp = path.split("/");
ArrayDeque<String> stk = new ArrayDeque<String>();
for(String s: inp){
if(s.length() > 0){
if(!s.equals(".")){
if(s.equals("..")){
if(!stk.isEmpty())
stk.pop();
}
else
stk.push(s);
}
}
}
StringBuilder str = new StringBuilder();
solve(stk, str);
// String res = str.toString();
if(str.length() == 0)
str.append("/");
return str.toString();
}
public void solve(ArrayDeque<String> stk, StringBuilder str){
if(!stk.isEmpty()){
String curr = stk.pop();
solve(stk, str);
str.append("/");
str.append(curr);
}
}
}