PhoenixZq
分享是一门艺术~~
摘要: #include <iostream>using namespace std;void Permutation(int* arr,int len,int length){ if(!arr && length<1) return; if(len == length) { for(int i=0;i<length;++i) cout << arr[i]; cout << endl; } else { for(int j =len;j<length;++j) { ... 阅读全文
posted @ 2011-10-12 20:37 PhoenixZq 阅读(257) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2011-10-12 13:29 PhoenixZq 阅读(1) 评论(0) 推荐(0) 编辑