題目
Given an absolute path for a file (Unix-style), simplify it.
For example,
path = "/home/"
, => "/home"
path = "/a/./b/../../c/"
, => "/c"
click to show corner cases.
Corner Cases:"/../"
?"/"
.'/'
together,
such as "/home//foo/"
."/home/foo"
.
分析
java自帶的split函數,以及Stack迭代器的遍歷順序都完全符合這題的要求。
代碼
import java.util.Stack; public class SimplifyPath { public String simplifyPath(String path) { Stackstack = new Stack (); String[] array = path.split("/"); for (int i = 0; i < array.length; ++i) { if (array[i].length() == 0 || array[i].equals(".")) { continue; } else if (array[i].equals("..")) { if (!stack.isEmpty()) { stack.pop(); } } else { stack.push(array[i]); } } StringBuilder sb = new StringBuilder("/"); for (String e : stack) { sb.append(e).append("/"); } return sb.length() == 1 ? sb.toString() : sb.substring(0, sb.length() - 1).toString(); } }