#include <iostream>using namespace std; void swap(int array[], int beginPos, int endPos){ int t = array[beginPos]; array[beginPos] = array[endPos]; ar Read More
posted @ 2016-03-28 08:19 zhaodonglin Views(142) Comments(0) Diggs(0)