-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path630 - Anagrams.cpp
104 lines (75 loc) · 2 KB
/
630 - 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
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
#include <bits/stdc++.h>
using namespace std;
int getKey(const string& str);
bool areAnagrams(const string& str1, const string& str2);
int main() {
int t;
cin >> t;
while (t--) {
int n;
cin >> n;
map<int, vector<string>> anagrams;
while (n--) {
string str;
cin >> str;
int key = getKey(str);
auto it = anagrams.find(key);
if (it != anagrams.end()){
vector<string> &v = it->second;
v.push_back(str);
} else {
vector<string> v;
v.push_back(str);
anagrams[key] = v;
}
}
string str;
cin >> str;
while (str != "END") {
cout << "Anagrams for: " << str << endl;
int key = getKey(str);
auto it = anagrams.find(key);
if (it != anagrams.end()){
vector<string> &v = it->second;
int count = 0;
for (int i = 1; i <= v.size(); i++) {
if (areAnagrams(str, v[i - 1]))
cout << " " << ++count << ") " << v[i - 1] << endl;
}
if (count == 0) {
cout << "No anagrams for: " << str << endl;
}
} else {
cout << "No anagrams for: " << str << endl;
}
cin >> str;
}
if (t) {
cout << endl;
}
}
return 0;
}
int getKey(const string& str) {
int hash = 0;
for (char const &c : str) {
hash += c;
}
return hash;
}
bool areAnagrams(const string& str1, const string& str2) {
int n1 = str1.length();
int n2 = str2.length();
if (n1 != n2) {
return false;
}
string x(str1);
string y(str2);
sort(x.begin(), x.end());
sort(y.begin(), y.end());
for (int i = 0; i < n1; i++) {
if (x[i] != y[i])
return false;
}
return true;
}