-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProblem_1123_removeSubfolders.cc
105 lines (93 loc) · 2.08 KB
/
Problem_1123_removeSubfolders.cc
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
#include <algorithm>
#include <functional>
#include <iostream>
#include <string>
#include <unordered_map>
#include <vector>
#include "UnitTest.h"
using namespace std;
class Solution
{
struct Trie
{
Trie() : ref(-1) {}
unordered_map<string, Trie *> children;
int ref;
};
public:
vector<string> removeSubfolders(vector<string> &folder)
{
auto split = [](const string &s) -> vector<string> {
vector<string> ret;
string cur;
for (char ch : s)
{
if (ch == '/')
{
ret.push_back(move(cur));
cur.clear();
}
else
{
cur.push_back(ch);
}
}
ret.push_back(move(cur));
return ret;
};
Trie *root = new Trie();
for (int i = 0; i < folder.size(); ++i)
{
vector<string> path = split(folder[i]);
Trie *cur = root;
for (const string &name : path)
{
if (!cur->children.count(name))
{
cur->children[name] = new Trie();
}
cur = cur->children[name];
}
cur->ref = i;
}
vector<string> ans;
function<void(Trie *)> dfs = [&](Trie *cur) {
if (cur->ref != -1)
{
ans.push_back(folder[cur->ref]);
return;
}
for (auto &&[_, child] : cur->children)
{
dfs(child);
}
};
dfs(root);
return ans;
}
};
bool isVectorEqual(vector<string> a, vector<string> b)
{
std::sort(a.begin(), a.end());
std::sort(b.begin(), b.end());
return a == b;
}
void testRemoveSubfolders()
{
Solution s;
vector<string> f1 = {"/a", "/a/b", "/c/d", "/c/d/e", "/c/f"};
vector<string> o1 = {"/a", "/c/d", "/c/f"};
vector<string> f2 = {"/a", "/a/b/c", "/a/b/d"};
vector<string> o2 = {"/a"};
vector<string> f3 = {"/a/b/c", "/a/b/ca", "/a/b/d"};
vector<string> o3 = {"/a/b/c", "/a/b/ca", "/a/b/d"};
EXPECT_TRUE(isVectorEqual(o1, s.removeSubfolders(f1)));
EXPECT_TRUE(isVectorEqual(o2, s.removeSubfolders(f2)));
EXPECT_TRUE(isVectorEqual(o3, s.removeSubfolders(f3)));
EXPECT_SUMMARY;
}
int main()
{
testRemoveSubfolders();
return 0;
}