给你一个字符串 path ,表示指向某一文件或目录的 Unix 风格绝对路径(以 ‘/’ 开头),请你将其转化为更加简洁的规范路径。
在 Unix 风格的文件系统中,一个点(.)表示当前目录本身;此外,两个点 (..) 表示将目录切换到上一级(指向父目录);两者都可以是复杂相对路径的组成部分。任意多个连续的斜杠(即,’//’)都被视为单个斜杠 ‘/’ 。 对于此问题,任何其他格式的点(例如,’…’)均被视为文件/目录名称。
请注意,返回的规范路径必须遵循下述格式:
- 始终以斜杠 ‘/’ 开头。
- 两个目录名之间必须只有一个斜杠 ‘/’ 。
- 最后一个目录名(如果存在)不能 以 ‘/’ 结尾。
- 此外,路径仅包含从根目录到目标文件或目录的路径上的目录(即,不含 ‘.’ 或 ‘..’)。
返回简化后得到的规范路径 。
示例 1:
输入:path = "/home/"
输出:"/home"
解释:注意,最后一个目录名后面没有斜杠。
示例 2:
输入:path = "/../"
输出:"/"
解释:从根目录向上一级是不可行的,因为根目录是你可以到达的最高级。
示例 3:
输入:path = "/home//foo/"
输出:"/home/foo"
解释:在规范路径中,多个连续斜杠需要用一个斜杠替换。
示例 4:
输入:path = "/a/./b/../../c/"
输出:"/c"
提示:
- 1 <= path.length <= 3000
- path 由英文字母,数字,’.’,’/’ 或 ‘_’ 组成。
- path 是一个有效的 Unix 风格绝对路径。
Python 解答:
class Solution:
def simplifyPath(self, path: str) -> str:
lens = len(path)
string = ['/']
i = 0
while i < lens:
if path[i] == '/':
j = 0
while i < lens and path[i] == '/':
j += 1
i += 1
if string and string[-1] == '/':
pass
else:
string.append('/')
elif path[i] == '.':
j = 0
temp = ""
while i < lens and path[i] == '.':
temp += '.'
j += 1
i += 1
if j == 1 and (i == lens or path[i] == '/'):
pass
elif j == 2 and (i == lens or path[i] == '/'):
if string:
string.pop()
if string:
string.pop()
else:
while i < lens and (path[i].isalnum() or path[i] == '_'):
temp += path[i]
i += 1
string.append(temp)
elif path[i].isalpha() or path[i] == '_' or path[i] == '.':
temp = ""
while i < lens and (path[i].isalnum() or path[i] == '_' or path[i] == '.'):
temp += path[i]
i += 1
string.append(temp)
if len(string) >= 2 and string[-1] == '/':
string.pop()
elif not string:
string.append('/')
return ''.join(string)
2.使用库函数split
class Solution:
def simplifyPath(self, path: str) -> str:
arr = path.split('/')
string = []
for item in arr:
if not item or item == '.':
continue
elif item == '..':
if string:
string.pop()
else:
string.append('/'+item)
if not string:
string.append('/')
return ''.join(string)
留言