-
Notifications
You must be signed in to change notification settings - Fork 153
/
Copy pathgenerate_all_palindromes.cpp
62 lines (57 loc) · 1.47 KB
/
generate_all_palindromes.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
60
61
62
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
/**
* Description: Generate all palindromes haing 'numDigits' digits
* Usage: generatePalindromes
* Source: https://github.com/dragonslayerx
*/
long long toInt(string x){
long long sum = 0;
for (int i = 0; i < x.size(); i++) {
sum *= 10;
sum += (x[i]-'0');
}
return sum;
}
void fillDigits(int begin, int end, string&s, vector<int> &palindrome){
if (begin > end) {
string t = s;
reverse(t.begin(), t.end());
if (s[0] != '0') {
palindrome.push_back(toInt(s + t));
}
} else if (begin == end) {
string t = s;
reverse(t.begin(), t.end());
for (int i = 0; i <= 9; i++) {
s.push_back(i + '0');
if (s[0] != '0') {
palindrome.push_back(toInt(s + t));
}
s.pop_back();
}
} else {
for (int i = 0; i <= 9; i++) {
s.push_back(i + '0');
fillDigits(begin+1, end-1, s, palindrome);
s.pop_back();
}
}
}
vector<int> generatePalindromes(int numDigits) {
vector<int> palindrome;
string s;
for (int i = 1; i <= numDigits; i++) {
fillDigits(0, i-1, s, palindrome);
}
return palindrome;
}
int main() {
vector<int> palindromes = generatePalindromes(3);
for (int i = 0; i < palindromes.size(); i++) {
cout << palindromes[i] << ", ";
}
cout << endl;
}