有各种排序算法

源代码在线查看: quicksort_insert.h

软件大小: 7 K
上传用户: apsdn
关键词: 排序算法
下载地址: 免注册下载 普通下载 VIP

相关代码

				#include"DataList.h"
				#include"InsertSort.h"
				#include"QuickSort.h"
				template
				void QuickSort_insert(dataList& L,const int left,const int right)
				{
					if(right - left 						InsertSort(L,left,right);
					else
					{
						int pivotpos = L.Partition2(left,right);
						QuickSort(L,left,pivotpos - 1);
						QuickSort(L,pivotpos + 1,right);
					}
				}
				
				template
				void HybridSort(dataList& L,const int left,const int right)
				{
					QuickSort(L,left,right);
					InsertSort(L,left,right);
				}			

相关资源