溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

C++用回溯方法做全排列的代碼

發(fā)布時間:2020-07-16 07:37:58 來源:網(wǎng)絡(luò) 閱讀:262 作者:dinosaur2019 欄目:編程語言

學(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;
}
向AI問一下細(xì)節(jié)

免責(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)容。

AI