递归求全排列(dfs)

递归求全排列(dfs)

一张图看懂。

  • 交换
  • 递归
  • 回溯
    在这里插入图片描述
#include <cstdio>
#include <vector>
#include <queue>
#include <cstring>
#include <cmath>
#include <map>
#include <set>
#include <string>
#include <iostream>
#include <algorithm>
#include <functional>
#include <stack>
#include <ctime>
#include <cstdlib>
//#pragma comment (linker, "/STACK:256000000")
using namespace std;
#define db(x) cout<<x<<endl

typedef long long ll;
const int N = 200 + 10;
const int INF = 0x3f3f3f;

void print(int x[])
{
    for(int i = 0; i < 4; i++){
        printf("%d ", x[i]);
    }
    cout << endl;
}
void f(int x[], int k)
{
    int i, t;
    if (k >= 4)
    {
        print(x);
        return;
    }
    for (i = k; i < 4; i++)
    {
        {                  
            t = x[k];
            x[k] = x[i];
            x[i] = t;
        }
        f(x, k + 1);
        {                  
            t = x[k];
            x[k] = x[i];
            x[i] = t;
        }
    }
}
int main()
{
    int x[] = {1, 2, 3, 4};
    f(x, 0);
    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值