摘要:
下面的代码是在VS2010中编译过的,运行正确。////////sort.h/////////////////////#ifndef _SORT_H_#define _SORT_H_templateclass CSort{private: //QuickSort,SelectSort,HeapSort均使用 void swap(T *left, T *right); //the following three functions are for HeapSort() void FilterDown(T x[], const int i, const int n); ... 阅读全文