-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProblem_0784_letterCasePermutation.cc
68 lines (62 loc) · 1.26 KB
/
Problem_0784_letterCasePermutation.cc
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
#include <algorithm>
#include <iostream>
#include <string>
#include <vector>
#include "UnitTest.h"
using namespace std;
class Solution
{
public:
void process(string s, int index, vector<string> &set)
{
if (index == s.length())
{
set.push_back(s);
return;
}
if (('a' <= s[index] && s[index] <= 'z') || ('A' <= s[index] && s[index] <= 'Z'))
{
s[index] ^= 32;
process(s, index + 1, set);
s[index] ^= 32;
}
process(s, index + 1, set);
}
vector<string> letterCasePermutation(string s)
{
vector<string> ans;
process(s, 0, ans);
return ans;
}
};
bool isVectorMemberEqual(vector<string> a, vector<string> b)
{
if (a.size() != b.size())
{
return false;
}
std::sort(a.begin(), a.end());
std::sort(b.begin(), b.end());
for (int i = 0; i < a.size(); i++)
{
if (a[i] != b[i])
{
return false;
}
}
return true;
}
void testLetterCasePermutation()
{
Solution s;
vector<string> o1 = {"a1b2", "a1B2", "A1b2", "A1B2"};
vector<string> o2 = {"3z4", "3Z4"};
EXPECT_TRUE(isVectorMemberEqual(o1, s.letterCasePermutation("a1b2")));
EXPECT_TRUE(isVectorMemberEqual(o2, s.letterCasePermutation("3z4")));
EXPECT_SUMMARY;
}
int main()
{
testLetterCasePermutation();
return 0;
}