-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpalindrome_partitioning.dart
137 lines (113 loc) · 3.05 KB
/
palindrome_partitioning.dart
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
/*
-* 131. Palindrome Partitioning *-
Given a string s, partition s such that every
substring
of the partition is a
palindrome
. Return all possible palindrome partitioning of s.
Example 1:
Input: s = "aab"
Output: [["a","a","b"],["aa","b"]]
Example 2:
Input: s = "a"
Output: [["a"]]
Constraints:
1 <= s.length <= 16
s contains only lowercase English letters.
*/
class A {
bool checkPalindrome(String str, int startIndex, int lastIndex) {
while (startIndex <= lastIndex) {
if (str.codeUnitAt(startIndex) != str.codeUnitAt(lastIndex)) return false;
startIndex++;
lastIndex--;
}
return true;
}
void palindromePartition(
int index, List<String> ds, List<List<String>> output, String str) {
if (index == str.length) {
// output.add([...ds]..toList());
output.add([...ds]);
return;
}
for (int i = index; i < str.length; i++) {
if (checkPalindrome(str, index, i)) {
ds.add(str.substring(index, i + 1));
palindromePartition(i + 1, ds, output, str);
ds.remove(ds.length - 1);
}
}
}
List<List<String>> partition(String s) {
List<List<String>> output = <String>[].map((e) => <String>[]).toList();
List<String> ds = [];
palindromePartition(0, ds, output, s);
return output;
}
}
class B {
bool isPalindrome(String s) {
int left = 0, right = s.length - 1;
while (left <= right) {
if (s[left] != s[right]) return false;
left++;
right--;
}
return true;
}
void helper(String s, List<String> step, List<List<String>> result) {
// Base case
if (s.length == 0) {
result.add(step.toList());
return;
}
for (int i = 1; i <= s.length; i++) {
String temp = s.substring(0, i);
if (!isPalindrome(temp))
continue; // only do backtracking when current string is palindrome
step.add(temp); // choose
helper(s.substring(i, s.length), step, result); // explore
step.remove(step.length - 1); // un-choose
}
return;
}
List<List<String>> partition(String s) {
// Backtracking
// Edge case
if (s.length == 0) return [];
List<List<String>> result = [];
helper(s, [], result);
return result;
}
}
class C {
bool checkPalindrome(String str, int startIndex, int lastIndex) {
while (startIndex <= lastIndex) {
if (str[startIndex] != str[lastIndex]) return false;
startIndex++;
lastIndex--;
}
return true;
}
void palindromePartition(
int index, List<String> ds, List<List<String>> output, String str) {
if (index == str.length) {
output.add(List.filled(ds.length - 1, ""));
return;
}
for (int i = index; i < str.length; i++) {
if (checkPalindrome(str, index, i)) {
ds.add(str.substring(index, i - index + 1));
palindromePartition(i + 1, ds, output, str);
ds.removeLast();
}
}
}
List<List<String>> partition(String s) {
List<List<String>> output = [];
List<String> ds = [];
palindromePartition(0, ds, output, s);
return output;
}
}