2013年8月22日

摘要: void randselect(int m,int n,int b[],int i){ if(m<=0) { for(int j=0;j<i;j++) cout<<setw(5)<<b[j]; cout<<endl; return; } if(n<=0) return; if(n<m) return; b[i]=n; randselect(m-1,n-1,b,i+1);// 选择n randselect(m,n-1,b,i); // 不选择n元素} 阅读全文
posted @ 2013-08-22 21:52 dyc0113 阅读(213) 评论(0) 推荐(0) 编辑

导航