摘要: 上回说到全排列,这里进行补充。 运用搜索算法,进行全排列。 1 #include<iostream> 2 3 using namespace std; 4 int a[1000]; 5 6 void search(int t) 7 { 8 if(t>3) 9 { 10 for(int i=1;i<= 阅读全文
posted @ 2019-05-12 12:31 yrz_best 阅读(124) 评论(0) 推荐(0)