#include<iostream>using namespace std; void swap(int array[], int index1, int index2){ int t = array[index1]; array[index1] = array[index2]; array[ind Read More
posted @ 2016-03-17 20:10 zhaodonglin Views(134) Comments(0) Diggs(0)