1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-01-10 18:48:13 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
leetcode-problemset/leetcode-cn/problem (Chinese)/简化路径 [simplify-path].html
2022-03-29 12:43:11 +08:00

57 lines
2.3 KiB
HTML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<p>给你一个字符串 <code>path</code> 表示指向某一文件或目录的 Unix 风格 <strong>绝对路径 </strong>(以 <code>'/'</code> 开头),请你将其转化为更加简洁的规范路径。</p>
<p class="MachineTrans-lang-zh-CN">在 Unix 风格的文件系统中,一个点(<code>.</code>)表示当前目录本身;此外,两个点 <code>..</code>) 表示将目录切换到上一级(指向父目录);两者都可以是复杂相对路径的组成部分。任意多个连续的斜杠(即,<code>'//'</code>)都被视为单个斜杠 <code>'/'</code> 。 对于此问题,任何其他格式的点(例如,<code>'...'</code>)均被视为文件/目录名称。</p>
<p>请注意,返回的 <strong>规范路径</strong> 必须遵循下述格式:</p>
<ul>
<li>始终以斜杠 <code>'/'</code> 开头。</li>
<li>两个目录名之间必须只有一个斜杠 <code>'/'</code></li>
<li>最后一个目录名(如果存在)<strong>不能 </strong><code>'/'</code> 结尾。</li>
<li>此外,路径仅包含从根目录到目标文件或目录的路径上的目录(即,不含 <code>'.'</code><code>'..'</code>)。</li>
</ul>
<p>返回简化后得到的 <strong>规范路径</strong></p>
<p> </p>
<p><strong>示例 1</strong></p>
<pre>
<strong>输入:</strong>path = "/home/"
<strong>输出:</strong>"/home"
<strong>解释:</strong>注意,最后一个目录名后面没有斜杠。 </pre>
<p><strong>示例 2</strong></p>
<pre>
<strong>输入:</strong>path = "/../"
<strong>输出:</strong>"/"
<strong>解释:</strong>从根目录向上一级是不可行的,因为根目录是你可以到达的最高级。
</pre>
<p><strong>示例 3</strong></p>
<pre>
<strong>输入:</strong>path = "/home//foo/"
<strong>输出:</strong>"/home/foo"
<strong>解释:</strong>在规范路径中,多个连续斜杠需要用一个斜杠替换。
</pre>
<p><strong>示例 4</strong></p>
<pre>
<strong>输入:</strong>path = "/a/./b/../../c/"
<strong>输出:</strong>"/c"
</pre>
<p> </p>
<p><strong>提示:</strong></p>
<ul>
<li><code>1 <= path.length <= 3000</code></li>
<li><code>path</code> 由英文字母,数字,<code>'.'</code><code>'/'</code><code>'_'</code> 组成。</li>
<li><code>path</code> 是一个有效的 Unix 风格绝对路径。</li>
</ul>