从 1 ~ n 这n个整数中随机选取任意多个,输出所有可能的选择方案。
#include <iostream> //C++标准库中的头文件.用于控制台输入和输出。 #include <cstring> //用于处理字符串的函数和操作 #include <algorithm> //提供了许多常用的算法函数,用于对数据进行排序、查找、变换和操作等操作。 using namespace std; const int N = 20; int n; int st[N]; void dfs(int x) { // x表示当前枚举到了哪个位置 if (x > n) { for (int i = 1; i <= n; i++) { if (st[i] == 1) { printf("%d ", i); } } printf("\n"); return; } // 选 st[x] = 1; dfs(x + 1); st[x] = 0; // 恢复现场 // 不选 st[x] = 2; dfs(x + 1); st[x] = 0; // 恢复现场 } int main() { scanf("%d", &n); dfs(1); return 0; }
一些注意:n<=10^5 cin和cout与scanf和printf速度差不多,但当超过这个范围,cin和cout会比scanf和printf慢一倍。
标签:递归,指数,int,枚举,用于,操作,include From: https://www.cnblogs.com/gjkt2001/p/17437206.html