码迷,mamicode.com
首页 > 编程语言 > 详细

[LeetCode]题解(python):071-Simplify Path

时间:2015-12-23 14:32:16      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:

题目来源:

  https://leetcode.com/problems/simplify-path/


 

题意分析:

  简化Unix上的绝对路径,也就是多个‘/‘代表一个,‘..‘表示返回上一级目录,‘.‘代表当前目录。


 

题目思路:

  利用栈,把非‘/‘和‘.‘push进栈,如果遇到‘..‘pop掉一个,否则继续push进去。最后还原成路径格式。


 

代码(Python):

  

技术分享
class Solution(object):
    def simplifyPath(self, path):
        """
        :type path: str
        :rtype: str
        """
        stack,i,ans = [],0,‘‘
        while i < len(path):
            j = i + 1
            while j < len(path) and path[j] != /:
                j += 1
            tmp = path[i + 1:j]
            if tmp != ‘‘:
                if tmp == ..:
                    if stack !=[]:
                        stack.pop()
                elif tmp != .:
                    stack.append(tmp)
            i = j
        if stack == []:
            return /
        for k in stack:
            ans += / + k
        return ans
View Code

 


 

转载请注明出处:http://www.cnblogs.com/chruny/p/5069660.html

[LeetCode]题解(python):071-Simplify Path

标签:

原文地址:http://www.cnblogs.com/chruny/p/5069660.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!