标签:fine for ati als out 方法 内容 int led
学习闲暇时间,将内容过程经常用的一些内容记录起来,下边内容是关于C++用回溯方法做全排列的内容,应该能对各位有一些好处。#include<cstring>
#include<iostream>
#define LEN 10
using namespace std;
char elem[LEN] = { ‘a‘, ‘b‘, ‘c‘, ‘d‘, ‘e‘, ‘f‘, ‘g‘, ‘h‘, ‘i‘, ‘j‘ };
char result[LEN];
bool filled[LEN];
void permutation(int k, int n) {
if (k == n) {
for (int i = 0; i < n; i++) {
cout << result[i] << " ";
}
cout << endl;
} else {
for (int i = 0; i < n; i++) {
if (!filled[i]) {
filled[i] = true;
result[k] = elem[i];
permutation(k + 1, n);
filled[i] = false;
}
}
}
}
int main() {
memset(result, 0, sizeof(result));
memset(filled, false, sizeof(filled));
permutation(0, LEN);
return 0;
}
标签:fine for ati als out 方法 内容 int led
原文地址:http://blog.51cto.com/14176413/2348694