-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1067.cpp
50 lines (40 loc) · 1.23 KB
/
1067.cpp
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
#include <iostream>
#include <bits/stdc++.h>
using namespace std;
struct directory{
map<string, directory *> children;
};
void getOrder(directory* const parent, string tab_current) {
string tab = " ";
tab += tab_current;
map<string, directory *> sorted_children(parent->children.begin(), parent->children.end());
map<string, directory *>::iterator it;
for (it = sorted_children.begin(); it != sorted_children.end(); it++) {
cout << tab_current << it->first << endl;
getOrder(it->second,tab);
}
}
directory *get_directory(string const name, directory* const parent) {
if ((parent->children).find(name) != parent->children.end()) {
return parent->children[name];
} else {
parent->children[name] = new directory{};
return parent->children[name];
}
}
int main() {
int count;
cin >> count;
directory * root = new directory{};
string s;
for (int i = 0; i <= count; i++) {
getline(cin, s);
stringstream path(s);
directory *current = root;
while (getline(path, s, '\\')) {
current = get_directory(s,current);
}
}
getOrder(root,"");
return 0;
}