两种方法寻找一个集合的所有子集

#include using namespace std; const int n = 4; int x[n]; char str[n][50] = {'id','name','sex','age'}; //回溯法 void backtrack(int t) { if(t >= n) { for(int i = 0; i < n; i++) cout<

回溯法还不明确,加紧学习

你可能感兴趣的:(C,include)