-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathSimplifyPath.java
169 lines (156 loc) · 4.88 KB
/
SimplifyPath.java
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
package LeetCodeJava.Stack;
// https://leetcode.com/problems/simplify-path/
// https://leetcode.cn/problems/simplify-path/
import java.util.*;
/**
* 71. Simplify Path
* Solved
* Medium
* Topics
* Companies
* You are given an absolute path for a Unix-style file system, which always begins with a slash '/'. Your task is to transform this absolute path into its simplified canonical path.
*
* The rules of a Unix-style file system are as follows:
*
* A single period '.' represents the current directory.
* A double period '..' represents the previous/parent directory.
* Multiple consecutive slashes such as '//' and '///' are treated as a single slash '/'.
* Any sequence of periods that does not match the rules above should be treated as a valid directory or file name. For example, '...' and '....' are valid directory or file names.
* The simplified canonical path should follow these rules:
*
* The path must start with a single slash '/'.
* Directories within the path must be separated by exactly one slash '/'.
* The path must not end with a slash '/', unless it is the root directory.
* The path must not have any single or double periods ('.' and '..') used to denote current or parent directories.
* Return the simplified canonical path.
*
*
*
* Example 1:
*
* Input: path = "/home/"
*
* Output: "/home"
*
* Explanation:
*
* The trailing slash should be removed.
*
* Example 2:
*
* Input: path = "/home//foo/"
*
* Output: "/home/foo"
*
* Explanation:
*
* Multiple consecutive slashes are replaced by a single one.
*
* Example 3:
*
* Input: path = "/home/user/Documents/../Pictures"
*
* Output: "/home/user/Pictures"
*
* Explanation:
*
* A double period ".." refers to the directory up a level (the parent directory).
*
* Example 4:
*
* Input: path = "/../"
*
* Output: "/"
*
* Explanation:
*
* Going one level up from the root directory is not possible.
*
* Example 5:
*
* Input: path = "/.../a/../b/c/../d/./"
*
* Output: "/.../b/d"
*
* Explanation:
*
* "..." is a valid name for a directory in this problem.
*
*
*
* Constraints:
*
* 1 <= path.length <= 3000
* path consists of English letters, digits, period '.', slash '/' or '_'.
* path is a valid absolute Unix path.
*
*/
public class SimplifyPath {
// V0
// public String simplifyPath(String path) {
//
// }
// V1
// (needcode)
// https://www.youtube.com/watch?v=qYlHrAKJfyA
// V2
// IDEA: DEQEUE + SET
// https://leetcode.com/problems/simplify-path/solutions/25686/java-10-lines-solution-with-stack-by-shp-u6t2/
public String simplifyPath_2(String path) {
Deque<String> stack = new LinkedList<>();
Set<String> skip = new HashSet<>(Arrays.asList("..", ".", ""));
for (String dir : path.split("/")) {
if (dir.equals("..") && !stack.isEmpty())
stack.pop();
else if (!skip.contains(dir))
stack.push(dir);
}
String res = "";
for (String dir : stack)
res = "/" + dir + res;
return res.isEmpty() ? "/" : res;
}
// V3
// IDEA: STACK
// https://leetcode.com/problems/simplify-path/solutions/3407361/easy-solutions-in-java-python-and-c-look-0a1r/
public String simplifyPath_3(String path) {
Stack<String> stack = new Stack<>(); // create a stack to keep track of directories
String[] directories = path.split("/"); // split the path by slash '/'
for (String dir : directories) { // iterate over the directories
if (dir.equals(".") || dir.isEmpty()) { // ignore the current directory '.' and empty directories
continue;
} else if (dir.equals("..")) { // go one level up for double period '..'
if (!stack.isEmpty()) { // if stack is not empty, pop the top element
stack.pop();
}
} else { // for any other directory, push it to the stack
stack.push(dir);
}
}
return "/" + String.join("/", stack); // join the directories in the stack with slash '/' and add a slash at the beginning
}
// V4
// IDEA: STACK
// https://leetcode.com/problems/simplify-path/solutions/6210383/video-stack-solution-by-niits-wg7g/
public String simplifyPath_4(String path) {
String[] components = path.split("/");
Stack<String> st = new Stack<>();
for (String comp : components) {
if (comp.equals("") || comp.equals(".")) {
continue;
}
if (comp.equals("..")) {
if (!st.isEmpty()) {
st.pop();
}
} else {
st.push(comp);
}
}
StringBuilder sb = new StringBuilder();
while (!st.isEmpty()) {
sb.insert(0, "/" + st.pop());
}
return sb.length() == 0 ? "/" : sb.toString();
}
}