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

本文共 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://btvwa.baihongyu.com/

你可能感兴趣的文章
while((ch = getchar()) != '\n')
查看>>
好程序员web前端分享JS检查浏览器类型和版本
查看>>
Oracle DG 逻辑Standby数据同步性能优化
查看>>
exchange 2010 队列删除
查看>>
「翻译」逐步替换Sass
查看>>
H5实现全屏与F11全屏
查看>>
处理excel表的列
查看>>
C#数据采集类
查看>>
quicksort
查看>>
【BZOJ2019】nim
查看>>
LINUX内核调试过程
查看>>
【HDOJ】3553 Just a String
查看>>
Java 集合深入理解(7):ArrayList
查看>>
2019年春季学期第四周作业
查看>>
linux环境配置
查看>>
tomcat指定配置文件路径方法
查看>>
linux下查看各硬件型号
查看>>
epoll的lt和et模式的实验
查看>>
Flux OOM实例
查看>>
07-k8s-dns
查看>>