博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
71. Simplify Path
阅读量:6799 次
发布时间:2019-06-26

本文共 2160 字,大约阅读时间需要 7 分钟。

Given an absolute path for a file (Unix-style), simplify it. Or in other words, convert it to the canonical path.

In a UNIX-style file system, a period . refers to the current directory. Furthermore, a double period .. moves the directory up a level. For more information, see: Absolute path vs relative path in Linux/Unix

Note that the returned canonical path must always begin with a slash /, and there must be only a single slash / between two directory names. The last directory name (if it exists) must not end with a trailing /. Also, the canonical path must be the shortest string representing the absolute path.

Example 1:

Input: "/home/"Output: "/home"Explanation: Note that there is no trailing slash after the last directory name.

Example 2:

Input: "/../"Output: "/"Explanation: Going one level up from the root directory is a no-op, as the root level is the highest level you can go.

Example 3:

Input: "/home//foo/"Output: "/home/foo"Explanation: In the canonical path, multiple consecutive slashes are replaced by a single one.

Example 4:

Input: "/a/./b/../../c/"Output: "/c"

Example 5:

Input: "/a/../../b/../c//.//"Output: "/c"

Example 6:

Input: "/a//bc/d//././/.."Output: "/a/b/c"

难度:medium

题目:给出unix风格的绝对路径,简化它。换名话说转成canonical 路径。 在unix风格系统里。.指当前目录。..指上一级目录。

思路:stack

Runtime: 14 ms, faster than 74.20% of Java online submissions for Simplify Path.

Memory Usage: 37.2 MB, less than 1.00% of Java online submissions for Simplify Path.

class Solution {    public String simplifyPath(String path) {        String[] strs = path.split("/");        Stack
stack = new Stack
(); for (int i = 0; i < strs.length; i++) { if (strs[i].isEmpty() || strs[i].equals(".")) { continue; } if (strs[i].equals("..")) { if (!stack.isEmpty()) stack.pop(); } else { stack.push("/" + strs[i]); } } StringBuilder sb = new StringBuilder(); for (String s: new ArrayList
(stack)) { sb.append(s); } return stack.isEmpty() ? "/" : sb.toString(); }}

转载地址:http://cjywl.baihongyu.com/

你可能感兴趣的文章
IOS之禁用UIWebView的默认交互行为
查看>>
绩效管理功能扩展包
查看>>
我的友情链接
查看>>
Android:NDK、JNI
查看>>
dl,dt,dd标记在网页中要充分利用
查看>>
Oracle非常规恢复(使用BBED跳过归档)
查看>>
c# 的四舍五入
查看>>
Java程序员从笨鸟到菜鸟之(七十二)细谈Spring(四)利用注解实现spring基本配置详解...
查看>>
Iperf带宽大小和TCP窗口测试
查看>>
linux命令总结-ls
查看>>
2013 SharePoint复习 -- CA之Application Management
查看>>
Nginx perl fcgi 配置
查看>>
我的友情链接
查看>>
java多态深入理解(二)
查看>>
利用node.js和mongodb为你的app写一个web服务
查看>>
Rails 3 Authlogic: Could not find generator ses...
查看>>
iOS静态库的那些坑
查看>>
IOS-APP提交上架流程(新手必看!2016年3月1日最新版)
查看>>
oracle rman 2
查看>>
hyper-v下NIC实验出现的问题
查看>>