sailing

Everything...

2007年1月29日

Merge Sort

摘要: // MergeSort.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include void MergeSort(int* a, int iLen); void MergePass(int* a, int* aa, int subLength, int iLen);... 阅读全文

posted @ 2007-01-29 01:11 乌生鱼汤 阅读(200) 评论(0) 推荐(0) 编辑

Heap Sort

摘要: // HeapSort.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include void DirectSelectSort(int* a, int iLen); void HeapSort(int* a, int iLen); void FilterDown(in... 阅读全文

posted @ 2007-01-29 00:10 乌生鱼汤 阅读(196) 评论(0) 推荐(0) 编辑

导航