码迷,mamicode.com
首页 > 其他好文 > 详细

[LeetCode]71 Simplify Path

时间:2015-01-04 19:43:47      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:leetcode

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

标签:leetcode

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

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