首页 > 其他 > 详细

[LeetCode]71 Simplify Path

时间:2015-01-04 19:42:13      阅读:302      评论:0      收藏:0      [点我收藏+]

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

http://blog.csdn.net/linhuanmars/article/details/23972563

public class Solution {
    public String simplifyPath(String path) {
        if (path == null)
            return null;
        
        String[] paths = path.split("/");
        
        Stack<String> stack = new Stack<>();
        for (String p : paths)
        {
            if (p.equals(".") || p.isEmpty())
            {
                continue;
            }
            
            if (p.equals(".."))
            {
                if (!stack.empty())
                    stack.pop();
            }
            else
            {
                stack.push(p);
            }
        }

        if (stack.empty())
            return "/"; // No path
        
        StringBuilder sb = new StringBuilder();
        while (!stack.empty())
        {
            sb.insert(0, "/" + stack.pop());
        }
        return sb.toString();
    }
}


[LeetCode]71 Simplify Path

原文:http://7371901.blog.51cto.com/7361901/1598907

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!