forked from zhuli19901106/leetcode-zhuli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathanagrams_1_AC.cpp
42 lines (38 loc) · 977 Bytes
/
anagrams_1_AC.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
#include <utility>
using std::make_pair;
using std::pair;
typedef pair<string, string> PSS;
bool comparator(const PSS &p1, const PSS &p2)
{
return p1.second < p2.second;
}
class Solution {
public:
vector<vector<string>> groupAnagrams(vector<string>& strs) {
vector<vector<string>> res;
int n = strs.size();
if (n == 0) {
return res;
}
vector<PSS> v;
int i;
for (i = 0; i < n; ++i) {
v.push_back(make_pair(strs[i], strs[i]));
sort(v[i].second.begin(), v[i].second.end());
}
sort(v.begin(), v.end(), comparator);
int j;
i = 0;
while (i < n) {
res.push_back(vector<string>());
j = i;
while (j < n && v[j].second == v[i].second) {
res.back().push_back(v[j].first);
++j;
}
i = j;
}
v.clear();
return res;
}
};