-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathPalindrome Partitioning.cpp
More file actions
48 lines (44 loc) · 1.3 KB
/
Palindrome Partitioning.cpp
File metadata and controls
48 lines (44 loc) · 1.3 KB
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
class Solution
{
public:
vector<vector<string>> partition(string s)
{
vector<vector<string>> result;
vector<vector<string>> partition_string({{s}});
vector<vector<string>> temp;
while (!partition_string.empty())
{
for (auto& x : partition_string)
{
string& untreated = x.back();
for (size_t len = 1; len < untreated.size(); ++len)
{
if (isPalindrome(untreated, 0, len))
{
temp.push_back(x);
temp.back().back().erase(len, untreated.size() - len);
temp.back().push_back(untreated.substr(len, untreated.size() - len));
}
}
if (isPalindrome(untreated, 0, untreated.size()))
{
result.push_back(x);
}
}
partition_string.swap(temp);
temp.clear();
}
return result;
}
bool isPalindrome(const string& s, size_t begin, size_t len)
{
for (size_t i = 0; i < len / 2; ++i)
{
if (s[begin + i] != s[begin + len - 1 - i])
{
return false;
}
}
return true;
}
};