您好,登錄后才能下訂單哦!
學(xué)習(xí)閑暇時間,將內(nèi)容過程經(jīng)常用的一些內(nèi)容記錄起來,下邊內(nèi)容是關(guān)于C++用回溯方法做全排列的內(nèi)容,應(yīng)該能對各位有一些好處。
#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;
}
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。