-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path0049.group_anagrams.cpp
53 lines (46 loc) · 1.15 KB
/
0049.group_anagrams.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
50
51
52
53
#include <cstdint>
#include <iostream>
#include <string>
#include <unordered_map>
#include <vector>
using std::string, std::vector, std::unordered_map;
vector<vector<string>> group_anagrams(vector<string>& strs)
{
unordered_map<string, vector<string>> m;
for (const auto& str : strs) {
string mask(26, (char)0);
for (const char c : str) {
int i = c - 'a';
mask[i] += 1;
}
m[mask].push_back(str);
}
vector<vector<string>> res;
for (const auto& [k, v] : m) {
res.push_back(vector<string>());
for (const auto& s : v) {
res.back().push_back(s);
}
}
return res;
}
int main () {
#ifdef LOCAL
freopen("0049.in", "r", stdin);
#endif
int n = 0;
while (std::cin >> n) {
vector<string> strs(n, "");
for (int i = 0; i < n; ++i) {
std::cin >> strs[i];
}
vector<vector<string>> res = group_anagrams(strs);
for (const auto& es : res) {
for (const auto& e : es) {
std::cout << e << ", ";
}
std::cout << std::endl;
}
}
return 0;
}