摘要: #include using namespace std;void myswap(int &a,int &b){ int temp = a; a = b; b = temp;}void fuc(int a[],int n,int len){ if(n==1) { for(int i=0;i<l... 阅读全文
posted @ 2014-08-24 15:43 byfei 阅读(143) 评论(0) 推荐(0) 编辑