摘要: #include <iostream> using namespace std;void perm(int A[],int k,int n){ int i; if(k==1){ for(i=0;i<n;i++){ cout<<A[i]<<" "; } cout << endl; } else{ fo 阅读全文
posted @ 2017-09-06 12:25 林丶 阅读(141) 评论(0) 推荐(0)