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

发布时间:2020-07-16 07:37:58 作者:dinosaur2019
来源:网络 阅读:269

学习闲暇时间,将内容过程经常用的一些内容记录起来,下边内容是关于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;
}
推荐阅读:
  1. 全网最简洁全排列源代码(递归)
  2. 全排列(C++实现)

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

算法 c+

上一篇:NAGIOS监控系统

下一篇:关于消息队列速率的解决方案

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》