-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFind All Anagrams in a String.cpp
218 lines (200 loc) · 5.86 KB
/
Find All Anagrams in a String.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
/*
Find All Anagrams in a String
Given a string s and a non-empty string p, find all the start indices of p's anagrams in s.
Strings consists of lowercase English letters only and the length of both strings s and p will not be larger than 20,100.
The order of output does not matter.
Example 1:
Input:
s: "cbaebabacd" p: "abc"
Output:
[0, 6]
Explanation:
The substring with start index = 0 is "cba", which is an anagram of "abc".
The substring with start index = 6 is "bac", which is an anagram of "abc".
Example 2:
Input:
s: "abab" p: "ab"
Output:
[0, 1, 2]
Explanation:
The substring with start index = 0 is "ab", which is an anagram of "ab".
The substring with start index = 1 is "ba", which is an anagram of "ab".
The substring with start index = 2 is "ab", which is an anagram of "ab".
*/
class Solution {
public:
vector<int> findAnagrams(string s, string p) {
map<char,int> m,pr;
vector<int> ans;
if(s.length() < p.length())
return ans;
for(char x : p)
{
m[x] = s.length();
pr[x] = pr[x] + 1;
}
for(int i=0;i<=(s.length()-p.length());i++)
{
if(m[s[i]] != NULL)
{
// cout<<s[i]<<") val->"<<m[s[i]]<<" Pr=>"<<pr[s[i]]<<endl;
int tmp = m[s[i]];
if(pr[s[i]] == 1)
{
m[s[i]] = m[s[i]] - 1;
}else
{
pr[s[i]] = pr[s[i]] - 1;
}
int k=1;
while(k<p.length())
{
if(m[s[i+k]] == tmp)
{
// cout<<s[i+k]<<") val->"<<m[s[i+k]]<<" Pr=>"<<pr[s[i+k]]<<endl;
// m[s[i+k]] = m[s[i+k]] -1;
if(pr[s[i+k]] == 1)
{
m[s[i+k]] = m[s[i+k]] - 1;
}else
{
pr[s[i+k]] = pr[s[i+k]] - 1;
}
}else
{
// cout<<"EEEE KATA"<<endl;
for(int j=i;j<i+k;j++)
{
m[s[j]] = tmp;
}
break;
}
k++;
}
if(k==p.length())
{
// cout<<"----Push->"<<i<<endl;
ans.push_back(i);
}
for(char x : p)
{
pr[x] = 0;
}
for(char x : p)
{
pr[x] = pr[x] + 1;
}
}
}
return ans;
}
};
/*
class Solution {
public:
vector<int> findAnagrams(string s, string p) {
map<char,int> m,cr;
vector<int> ans;
if(s.length() < p.length())
return ans;
for(char x : p)
{
m[x] = s.length();
cr[x] = cr[x] + 1;
}
for(int i=0;i<=(s.length()-p.length());i++)
{
if(m[s[i]] != NULL)
{
map<char,int> pr = cr;
// cout<<"\n"<<s[i]<<") val->"<<m[s[i]]<<" Pr=>"<<pr[s[i]];
int tmp = m[s[i]];
if(pr[s[i]] == 1)
{
m[s[i]] = m[s[i]] - 1;
}else
{
pr[s[i]] = pr[s[i]] - 1;
}
int k=1;
while(k<p.length())
{
if(m[s[i+k]] == tmp)
{
// cout<<s[i+k]<<") val->"<<m[s[i+k]]<<" Pr=>"<<pr[s[i+k]];
// cout<<" Pr->"<<pr[s[i+k]];
// m[s[i+k]] = m[s[i+k]] -1;
if(pr[s[i+k]] == 1)
{
cout<<i<<"Done!"<<endl;
m[s[i+k]] = m[s[i+k]] - 1;
}else
{
pr[s[i+k]] = pr[s[i+k]] - 1;
}
}else
{
// cout<<i<<")EEEE KATA"<<endl;
for(int j=i;j<i+k;j++)
{
m[s[j]] = tmp;
}
break;
}
k++;
}
if(k==p.length())
{
cout<<"----Push->"<<i<<endl;
ans.push_back(i);
}
}
}
return ans;
}
};
*/
/*
// Initialize
std::vector<int> returnvec;
std::unordered_map<char, size_t> letterBox;
for (auto c : p) letterBox[c]++;
std::queue<char> queue;
// Visit all letters in the search string
for (size_t i = 0; i < s.size(); i++)
{
auto it = letterBox.find(s[i]);
if (it != letterBox.end()) // picket letter is in originals
{
if (it->second > 0) // picket letter is still available in letterbox
{
queue.push(s[i]);
letterBox[s[i]]--;
if (queue.size() == p.size()) // we have a match
{
returnvec.push_back(i-p.size()+1);
letterBox[queue.front()]++;
queue.pop();
}
}
else // ran out of picket letter in letterbox, unwind queue until we this letter is found & put back in the queue
{
while (queue.front() != s[i])
{
letterBox[queue.front()]++;
queue.pop();
}
queue.pop(); queue.push(s[i]);
}
}
else // picket letter not in originals, fully unwind queue & move on
{
while (!queue.empty())
{
letterBox[queue.front()]++;
queue.pop();
}
}
}
return returnvec;
*/