首页 > 其他 > 详细

【Leetcode】 Simplify Path

时间:2016-05-30 15:13:21      阅读:133      评论:0      收藏:0      [点我收藏+]

题目链接:https://leetcode.com/problems/simplify-path/

题目:

Given an absolute path for a file (Unix-style), simplify it.

For example,
path = "/home/", => "/home"
path = "/a/./b/../../c/", => "/c"

思路:

easy

算法

public String simplifyPath(String path) {  
        String s[] = path.trim().split("\\/+");  
        Stack<String> stack = new Stack<String>();  
  
        for (String str : s) {  
            if (!str.equals("") && !str.equals(" ") && !str.equals(".") && !str.equals("..")) {  
                stack.push(str);  
            } else if (str.equals("..") && stack.size() != 0) {  
                stack.pop();  
            }  
        }  
        String res = "";// 将栈中剩余元素组合成路径  
        for (int i = 0; i < stack.size(); i++) {  
            res = "/" + stack.get(stack.size() - 1 - i) + res;  
        }  
        if (res.equals("")) // 防止/../情况  
            res = "/";  
        return res;  
    }  


【Leetcode】 Simplify Path

原文:http://blog.csdn.net/yeqiuzs/article/details/51527078

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