-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path0071-SimplifyPath.cs
86 lines (82 loc) · 1.78 KB
/
0071-SimplifyPath.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
using System;
using Xunit;
using Util;
using System.Linq;
using System.Collections.Generic;
namespace SimplifyPath
{
public class Solution
{
public string SimplifyPath(string path)
{
if (path.EndsWith('/'))
{
path = path.TrimEnd('/');
}
if (path == "")
{
return "/";
}
var ds = path.Split('/').Where(i => i != "");
var p = new List<string>();
foreach (var i in ds)
{
if (i == "..")
{
if (p.Count > 0)
{
p.RemoveAt(p.Count - 1);
}
}
else if (i == ".")
{
}
else
{
p.Add(i);
}
}
return "/" + string.Join('/', p);
}
}
public class Test
{
static void Verify(string path, string exp)
{
Console.WriteLine($"{path}");
string res;
using (new Timeit())
{
res = new Solution().SimplifyPath(path);
}
Assert.Equal(exp, res);
}
static public void Run()
{
Console.WriteLine("SimplifyPath");
var input = @"
/home/
/home
/../
/
/home//foo/
/home/foo
/a/./b/../../c/
/c
/a/../../b/../c//.//
/c
/a//b////c/d//././/..
/a/b/c
";
var lines = input.CleanInput();
string path, exp;
int idx = 0;
while (idx < lines.Length)
{
path = lines[idx++];
exp = lines[idx++];
Verify(path, exp);
}
}
}
}