forked from lazzzis/LeetCode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.js
More file actions
64 lines (56 loc) · 1.13 KB
/
Copy pathmain.js
File metadata and controls
64 lines (56 loc) · 1.13 KB
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
/**
* @param {string} path
* @return {string}
*/
var simplifyPath = function(path) {
path = path.split('/')
const stack = new Stack()
for (const item of path) {
if (item === '..') {
if (!stack.empty()) {
stack.pop()
}
} else if (item !== '.' && item !== '') {
stack.push(item)
}
}
let s = ''
while (!stack.empty()) {
s = '/' + stack.pop() + s
}
return s === '' ? '/' : s
};
class Stack {
constructor (vector = []) {
this._vector = vector
}
pop () {
if (this.length === 0) {
throw new Error('Failed to pop: empty stack')
}
return this._vector.pop()
}
push (val) {
return this._vector.push(val)
}
top () {
return this._vector[this.length - 1]
}
get length () {
return this._vector.length
}
empty () {
return this.length === 0
}
clear () {
this._vector = []
}
}
if (process.env.LZS) {
console.log(simplifyPath('/../../'))
console.log(simplifyPath('/../a/'))
console.log(simplifyPath('//'))
console.log(simplifyPath('/a/a/'))
console.log(simplifyPath('/a/././a/'))
console.log(simplifyPath('/a/b/././../c'))
}