2015年9月14日

循环赛日程表

摘要: 1 #include 2 using namespace std; 3 #define MAX 100 4 int a[MAX][MAX]; 5 void copy(int fx,int fy,int tx,int ty,int r) 6 { 7 int i,j; 8 for(i=... 阅读全文

posted @ 2015-09-14 14:27 天空中最亮的小星星 阅读(197) 评论(0) 推荐(0) 编辑

集合的全排列问题

摘要: 1 #include 2 using namespace std; 3 int from,to; 4 void perm(int list[],int k,int m) 5 { 6 int j; 7 if(k==m) 8 { 9 for(j=from-1;j... 阅读全文

posted @ 2015-09-14 10:03 天空中最亮的小星星 阅读(295) 评论(0) 推荐(0) 编辑

导航