2021年4月29日

产生01全排列字符串

摘要: #include <iostream> using namespace std; int a[10][10]; static int r=0; void f(int k) { if(k==4){ cout<<a[r][1]<<a[r][2]<<a[r][3]<<endl; r++;} else{ a 阅读全文

posted @ 2021-04-29 14:59 ewitt 阅读(107) 评论(0) 推荐(0)

导航