• 专题 递归与递推


    92. 递归实现指数型枚举 - AcWing题库

    1.位掩码

    创建一个state,其第u位是1     state | 1<

    代码1
    1. #include<bits/stdc++.h>
    2. using namespace std;
    3. typedef long long ll;
    4. #define IOS ios::sync_with_stdio(0),cin.tie(0),cout.tie(0)
    5. int n;
    6. void dfs(int u,int state)
    7. {
    8. if(u == n) //边界情况
    9. {
    10. //遍历输出结果
    11. for(int i = 0;i < n;i ++ )
    12. if(state >> i & 1) //看第i位是否为1
    13. cout << i + 1 <<' ';
    14. cout<<endl;
    15. return;
    16. }
    17. dfs(u + 1,state); // 不用这个数
    18. dfs(u + 1,state | 1 << u); //
    19. }
    20. int main()
    21. {
    22. IOS;
    23. cin>>n;
    24. dfs(0, 0);
    25. return 0;
    26. }

    注意:

    第一个是空集

    代码2
    1. #include<bits/stdc++.h>
    2. using namespace std;
    3. typedef long long ll;
    4. #define IOS ios::sync_with_stdio(0),cin.tie(0),cout.tie(0)
    5. const int N = 20;
    6. int n;
    7. bool state[N];
    8. void dfs(int u)
    9. {
    10. if(u > n) //叶子节点
    11. {
    12. //遍历输出结果
    13. for(int i = 1;i <= n;i ++ )
    14. if(state[i]) //看第i位是否为1
    15. cout << i <<' ';
    16. cout<<endl;
    17. return;
    18. }
    19. state[u] = true; // 选择当前u
    20. dfs(u + 1);
    21. state[u] = false; //不选
    22. dfs(u + 1);
    23. }
    24. int main()
    25. {
    26. IOS;
    27. cin>>n;
    28. dfs(1);
    29. return 0;
    30. }

    94. 递归实现排列型枚举 - AcWing题库

    全排列

    代码1
    1. #include<bits/stdc++.h>
    2. using namespace std;
    3. typedef long long ll;
    4. #define IOS ios::sync_with_stdio(0),cin.tie(0),cout.tie(0)
    5. const int N = 20;
    6. int n;
    7. int state[N];
    8. bool used[N];
    9. void dfs(int u)
    10. {
    11. if(u > n) //边界
    12. {
    13. //遍历输出结果
    14. for(int i = 1;i <= n;i ++ )
    15. cout << state[i] <<' ';
    16. cout<<endl;
    17. return;
    18. }
    19. //枚举每个位置存放数
    20. for(int i = 1; i <= n; i ++)
    21. {
    22. if(!used[i]){
    23. state[u] = i;
    24. used[i] = true;
    25. dfs(u+1);
    26. //恢复
    27. used[i] = false;
    28. state[u] = 0;
    29. }
    30. }
    31. }
    32. int main()
    33. {
    34. IOS;
    35. cin>>n;
    36. dfs(1);
    37. return 0;
    38. }
    代码2
    1. #include<bits/stdc++.h>
    2. using namespace std;
    3. typedef long long ll;
    4. #define IOS ios::sync_with_stdio(0),cin.tie(0),cout.tie(0)
    5. const int N = 20;
    6. int n;
    7. vector<int> used;
    8. void dfs(int u, int state)
    9. {
    10. if(u == n) //边界
    11. {
    12. //遍历输出结果
    13. for (auto x : used) cout << x <<' ';
    14. cout<<endl;
    15. return;
    16. }
    17. //枚举每个位置存放数
    18. for(int i = 0; i < n; i ++)
    19. {
    20. if(!(state >> i & 1))
    21. {
    22. used.push_back(i + 1);
    23. dfs(u + 1, state | 1 << i);
    24. used.pop_back();
    25. }
    26. }
    27. }
    28. int main()
    29. {
    30. IOS;
    31. cin>>n;
    32. dfs(0,0);
    33. return 0;
    34. }

    717. 简单斐波那契 - AcWing题库

    代码
    1. #include<bits/stdc++.h>
    2. using namespace std;
    3. typedef long long ll;
    4. #define IOS ios::sync_with_stdio(0),cin.tie(0),cout.tie(0)
    5. int main()
    6. {
    7. IOS;
    8. int n;
    9. cin>>n;
    10. //优化,dp滚动数组的雏形
    11. int a = 0, b = 1;
    12. for(int i = 0; i < n; i++)
    13. {
    14. cout<<a<<" ";
    15. int fn = a + b;
    16. a = b, b = fn;
    17. }
    18. }

  • 相关阅读:
    微软商店中的WSL预览版现已可用!Windows 11用户狂喜
    阿里云使用密钥登录服务器
    三分钟搞懂MySQL5.6优化&索引下推
    DDD的落地,需要基础设施的大力支持
    TCP状态转换
    Matlab App Designer 【04】使用公共函数在两个App之间传递数据
    flutter ble插件
    珂朵莉树转化区间(对于多区间类问题)+扫描线线段树维护:1031T3
    如何优雅的定义统一响应对象
    Jackson之ObjectMapper常用用法
  • 原文地址:https://blog.csdn.net/2301_80170590/article/details/140457753