问题:
我想创建一个整数的随机回文向量,假设其大小为static = 100
。回文矢量向前和向后读取相同的内容,例如[1、2、1],[1、2、3、3、2、1]等。
我的方法:
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
int rand(int a, int b) {
return a + rand() % (b - a) + 1; // generate a random integer between a and b.
}
int main() {
const int N = 100;
vector<int> v; // to store the first half
for (int i = 0; i < N / 2; i++) {
v.push_back(rand(1, 1000));
}
vector<int> entire_palindrome;
entire_palindrome.push_back(v);
reverse(v.begin(), v.end());
entire_palindrome.push_back(v);
return 0;
}