摘要: 1 #include 2 #include 3 4 using namespace std; 5 void swap(int* a,int pos,int j){ 6 int temp=a[pos]; 7 a[pos]=a[j]; 8 a[j]=temp; 9 }10... 阅读全文
posted @ 2015-11-23 21:03 D_riv 阅读(2049) 评论(0) 推荐(0) 编辑