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

Simplify Path

时间:2014-06-29 23:19:26      阅读:223      评论:0      收藏:0      [点我收藏+]

标签:java   leetcode   string   unix   

题目

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

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

Corner Cases:

  • Did you consider the case where path = "/../"?
    In this case, you should return "/".
  • Another corner case is the path might contain multiple slashes ‘/‘ together, such as "/home//foo/".
    In this case, you should ignore redundant slashes and return "/home/foo".

方法

题目的要求是输出Unix下的最简路径,Unix文件的根目录为"/","."表示当前目录,".."表示上级目录。

使用Stack来进行处理。

    public String simplifyPath(String path) {
    	Stack<String> stack = new Stack<String>();
    	String str = "";
    	for (int i = 0; i < path.length(); i++) {
    		if (path.charAt(i) == '/') {
    			if (str.equals("..")) {
    				if (!stack.isEmpty()) {
    					stack.pop();
    				}
    			} else if (!str.equals(".") && !str.equals("")) {
    				stack.push(str);
    			}
    			str = "";
    		} else {
    			str += path.charAt(i);
    		}
    	}
    	if (str.equals("..")) {
			if (!stack.isEmpty()) {
				stack.pop();
			}
    	} else if (!str.equals(".") && !str.equals("")) {
    		stack.push(str);
    	}
    	
    	if (stack.isEmpty()) {
    		return "/";
    	}
    	
    	String re = "";
    	while (!stack.isEmpty()) {
    		re = "/" + stack.pop() + re;
    	}
    	return re;
    }


Simplify Path,布布扣,bubuko.com

Simplify Path

标签:java   leetcode   string   unix   

原文地址:http://blog.csdn.net/u010378705/article/details/35558825

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