I started to learn how to program in 2004, but now I feel ashamed that I just do not know much about algorithm. Although being work as a computer prog Read More
posted @ 2016-03-16 18:57 zhaodonglin Views(101) Comments(0) Diggs(0)
#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-16 08:37 zhaodonglin Views(177) Comments(0) Diggs(0)