forked from sureshmangs/Code
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path49. Group Anagrams.cpp
96 lines (62 loc) · 1.95 KB
/
49. 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
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
Given an array of strings strs, group the anagrams together.
You can return the answer in any order.
An Anagram is a word or phrase formed by rearranging the letters of
a different word or phrase, typically using all the original letters exactly once.
Example 1:
Input: strs = ["eat","tea","tan","ate","nat","bat"]
Output: [["bat"],["nat","tan"],["ate","eat","tea"]]
Example 2:
Input: strs = [""]
Output: [[""]]
Example 3:
Input: strs = ["a"]
Output: [["a"]]
Constraints:
1 <= strs.length <= 104
0 <= strs[i].length <= 100
strs[i] consists of lower-case English letters.
class Solution {
public:
vector<vector<string>> groupAnagrams(vector<string>& strs) {
unordered_map<string, vector<string> > mp;
for(auto str: strs){
string tmp=str;
sort(tmp.begin(), tmp.end());
mp[tmp].push_back(str);
}
vector<vector<string> > anagrams;
for(auto it=mp.begin(); it!=mp.end(); it++)
anagrams.push_back(it->second);
return anagrams;
}
};
// since the string only contains lower-case alphabets
// we can sort them using hash table
class Solution {
public:
string sortIt(string str){
vector <int> freq(26, 0);
int n = str.length();
for (int i = 0; i < n; i++)
freq[str[i] - 'a']++;
string tmp = "";
for (int i = 0; i < 26; i++){
if(freq[i] > 0){
char ch = i + 'a';
tmp.append(freq[i], ch);
}
}
return tmp;
}
vector<vector<string>> groupAnagrams(vector<string>& strs) {
unordered_map <string, vector <string> > mp;
for (auto str: strs){
string tmp = sortIt(str);
mp[tmp].push_back(str);
}
vector <vector<string> > anagrams;
for (auto &[a, b]: mp)
anagrams.push_back(b);
return anagrams;
}
};