-
Notifications
You must be signed in to change notification settings - Fork 0
/
Solution.cpp
59 lines (52 loc) · 1.31 KB
/
Solution.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 <vector>
using namespace std;
class Solution {
public:
vector<vector<string>> partition(string s) {
vector<vector<string>> partitions = getPalindromicPartitions(s);
return partitions;
}
private:
vector<vector<string>> getPalindromicPartitions(string s) {
vector<vector<string>> partitions;
vector<string> currPartition;
getPartitions(s, partitions, currPartition, 0);
return partitions;
}
void getPartitions(string s,
vector<vector<string>>& partitions,
vector<string>& curr,
int start) {
if (start >= s.length()) {
partitions.push_back(curr);
return;
}
for (int end = start; end < s.size(); ++end) {
if (isPalindrome(s, start, end)) {
curr.push_back(s.substr(start, end - start + 1));
getPartitions(s, partitions, curr, end + 1);
curr.pop_back();
}
}
}
bool isPalindrome(string const& s, int left, int right) {
while (left < right) {
if (s[left] != s[right]) {
return false;
}
++left;
--right;
}
return true;
}
};
int main() {
auto partitions = Solution().partition("aab");
for (auto part : partitions) {
for (auto c : part) {
cout << c << ", ";
}
cout << endl;
}
}