-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPermutationInString.cpp
59 lines (46 loc) · 947 Bytes
/
PermutationInString.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
#include <iostream>
#include <string>
using namespace std;
bool isFreqSame(int freq1[], int freq2[])
{
for (int i = 0; i < 26; i++)
{
if (freq1[i] != freq2[i])
{
return false;
}
}
return true;
}
bool checkInclusion(string s1, string s2)
{
int freq[26] = {0};
for (int i = 0; i < s1.length(); i++)
{
freq[s1[i] - 'a']++;
}
int windSize = s1.length();
for (int i = 0; i < s2.length(); i++)
{
int windIdx = 0, idx = i;
int windfreq[26] = {0};
while (windIdx < windSize && idx < s2.length())
{
windfreq[s2[idx] - 'a']++;
windIdx++;
idx++;
}
if (isFreqSame(freq, windfreq))
{
return true;
}
}
return false;
}
int main()
{
string s1 = "ab";
string s2 = "eidbaooo";
cout << checkInclusion(s1, s2) << endl;
return 0;
}