zoj 1089 || poj 2245 Lotto(DFS~)

好吧  这题搜的DFS。。。自己写的,自己想的总是有错,改了好多好多都不对。。。哭啊。。。对DFS还是理解不透。。。

 

呜呜。。。交poj的时候,看讨论版 好多神奇的方法。。。6层循环 我晕。。。确实可以。。。。我了个去。。

 

#include <stdio.h> #include <stdlib.h> #include <iostream> #include <memory.h> using namespace std; int n,num[14],put[14]; void DFS(int d,int current) { if( d > 6 ) { for(int j=1; j<=5; j++) cout << put[j] << ' '; cout << put[6] << endl; } else for(int i=current; i<n-(6-d)+1; i++) { put[d] = num[i]; DFS( d+1, i+1 ); } } int main(void) { int flag = 1 ; while( cin >> n && n) { if( flag == 0 ) cout << endl; for(int i=1; i<=n; i++) { cin >> num[i]; } DFS(1,1); flag = 0; } return 0; }  

你可能感兴趣的:(zoj 1089 || poj 2245 Lotto(DFS~))