forked from iamAnki/CPP-Programs-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpalindrome_partitioning.cpp
46 lines (43 loc) · 1.19 KB
/
palindrome_partitioning.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
#include <bits/stdc++.h>
using namespace std;
bool check_palindrome(string s,int start, int end){
while(start<=end){
if(s[start] != s[end]) return false;
start++;
end--;
}
return true;
}
void find_partition(string s, int idx, vector<vector<string>>&ans,vector<string>&res){
//base case
if(idx == s.size()){ //we parsed till end
ans.push_back(res);
return;
}
for(int i=idx;i<s.size();i++){
//check if from s[idx..i] is palindrome
if(check_palindrome(s,idx,i)){
res.push_back(s.substr(idx,i-idx+1));
find_partition(s,i+1,ans,res);
res.pop_back();
}
}
}
vector<vector<string>> partition(string s) {
vector<vector<string>>ans;
vector<string>path;
find_partition(s,0,ans,path);
return ans;
}
int main() {
string str;
vector<vector<string>> ans;
cin >> str;
ans = partition(str);
for(int i=0;i<ans.size();i++){
for(int j=0;j<ans[i].size();j++){
cout << ans[i][j] << " ";
}
}
return 0;
}