【Leetcode】【python】Simplify Path

题目大意

化简Unix系统下一个文件的绝对路径。
输入: path = “/a/./b/../../c/“

输出: “/c”

解题思路

参考:
https://shenjie1993.gitbooks.io/leetcode-python/071%20Simplify%20Path.html

  1. “/“ 根目录

  2. “..” 跳转上级目录,上级目录为空,所以依旧处于 “/“

  3. “a” 进入子目录a,目前处于 “/a”

  4. “b” 进入子目录b,目前处于 “/a/b”

  5. “c” 进入子目录c,目前处于 “/a/b/c”

  6. “.” 当前目录,不操作,仍处于 “/a/b/c”

  7. “..” 返回上级目录,最终为 “/a/b”

用栈来处理,碰到有效字符就压栈,遇到上层目录字符”..”且栈不空时就弹出。为了最后连接字符串时头上有根目录,在栈底加一个空字符。

1
2
3
4
5
6
>>> a= ['a','b','c']
>>> '/'.join(a)
'a/b/c'
>>> a = ['','a','b']
>>> '/'.join(a)
'/a/b

代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
class Solution(object):
def simplifyPath(self, path):
"""
:type path: str
:rtype: str
"""
parts = path.split("/")
result = ['']
for part in parts:
if part:
if part not in ('.', '..'):
if len(result) == 0: # 若栈底空了,加入空字符再加入目录名
result.append('')
result.append(part)
elif part == '..' and len(result) > 0:
result.pop()
if len(result) < 2:
return "/"
else:
return "/".join(result) # 以/来组合list里的字符

总结