05 2011 档案

摘要: #include <vector>using namespace std;class HeapSort{private: int len; vector<int> list; void SwapNode(int i,int heapSize);public: void Sort(); void Print(); HeapSort(void); ~HeapSort(void);};#include <iostream>#include "HeapSort.h"using namespace std;HeapSort::HeapSort(vo阅读全文
posted @ 2011-05-21 23:25 君之蘭 阅读(192) | 评论 (0) 编辑