updated codes of SortBase
This commit is contained in:
parent
a7f4afab80
commit
6582b635c9
@ -1,190 +1,199 @@
|
||||
#ifndef HGL_ALGORITHM_SORT_INCLUDE
|
||||
#define HGL_ALGORITHM_SORT_INCLUDE
|
||||
#pragma once
|
||||
|
||||
#include<hgl/CompOperator.h>
|
||||
#include<hgl/Comparator.h>
|
||||
#include<hgl/type/List.h>
|
||||
#include<string.h>
|
||||
|
||||
template<typename T> class SortBase
|
||||
namespace hgl
|
||||
{
|
||||
protected:
|
||||
|
||||
T *buffer; //数据
|
||||
int number; //数据个数
|
||||
|
||||
Comparator<T> *comp; //比较函数类
|
||||
|
||||
public:
|
||||
|
||||
/**
|
||||
* 本类构造函数
|
||||
* @param buf 数据缓冲区
|
||||
* @param n 数据个数
|
||||
* @param c 数据大小比较类
|
||||
*/
|
||||
SortBase(T *buf,int n,Comparator<T> *c)
|
||||
template<typename T> class SortBase
|
||||
{
|
||||
buffer =buf;
|
||||
number =n;
|
||||
comp =c;
|
||||
}
|
||||
protected:
|
||||
|
||||
virtual ~SortBase()=default;
|
||||
T *buffer; //数据
|
||||
int number; //数据个数
|
||||
|
||||
int GetCount()const
|
||||
{
|
||||
return number;
|
||||
}
|
||||
ItemComparator<T> *comp; //比较函数类
|
||||
|
||||
int compare(const T &a,const T &b)
|
||||
{
|
||||
return comp->compare(a,b);
|
||||
}
|
||||
public:
|
||||
|
||||
virtual int compare_by_index(int a,int b)
|
||||
{
|
||||
return comp->compare(buffer[a],buffer[b]);
|
||||
}
|
||||
|
||||
virtual void exchange(T &a,T &b)
|
||||
{
|
||||
comp->exchange(a,b);
|
||||
}
|
||||
|
||||
virtual void exchane_by_index(int a,int b) //交换两个数据
|
||||
{
|
||||
comp->exchange(buffer[a],buffer[b]);
|
||||
}
|
||||
|
||||
virtual void cpy(T *dst,T *src)
|
||||
{
|
||||
comp->cpy(dst,src);
|
||||
}
|
||||
|
||||
virtual void cpy_by_index(int dst,int src)
|
||||
{
|
||||
comp->cpy(buffer+dst,buffer+src);
|
||||
}
|
||||
|
||||
virtual bool sort()=0; //排序
|
||||
};//struct SortBase
|
||||
|
||||
//堆排序
|
||||
template<typename T> class HeapSort:public SortBase<T>
|
||||
{
|
||||
void isift(int i,int n)
|
||||
{
|
||||
int j;
|
||||
T temp;
|
||||
|
||||
SortBase<T>::cpy(&temp,SortBase<T>::buffer+i);
|
||||
|
||||
j=2*(i+1)-1;
|
||||
|
||||
while(j<=n)
|
||||
SortBase(ItemComparator<T> *c)
|
||||
{
|
||||
if((j<n)&&(SortBase<T>::compare_by_index(j,j+1)<0))j++;
|
||||
buffer=nullptr;
|
||||
number=0;
|
||||
comp=c;
|
||||
}
|
||||
|
||||
if(SortBase<T>::compare(temp,SortBase<T>::buffer[j])<0)
|
||||
/**
|
||||
* 本类构造函数
|
||||
* @param buf 数据缓冲区
|
||||
* @param n 数据个数
|
||||
* @param c 数据大小比较类
|
||||
*/
|
||||
SortBase(T *buf,int n,ItemComparator<T> *c)
|
||||
{
|
||||
buffer =buf;
|
||||
number =n;
|
||||
comp =c;
|
||||
}
|
||||
|
||||
virtual ~SortBase()=default;
|
||||
|
||||
int GetCount()const
|
||||
{
|
||||
return number;
|
||||
}
|
||||
|
||||
int compare(const T &a,const T &b)
|
||||
{
|
||||
return comp->compare(a,b);
|
||||
}
|
||||
|
||||
virtual int compare_by_index(int a,int b)
|
||||
{
|
||||
return comp->compare(buffer[a],buffer[b]);
|
||||
}
|
||||
|
||||
virtual void exchange(T &a,T &b)
|
||||
{
|
||||
comp->exchange(a,b);
|
||||
}
|
||||
|
||||
virtual void exchane_by_index(int a,int b) //交换两个数据
|
||||
{
|
||||
comp->exchange(buffer[a],buffer[b]);
|
||||
}
|
||||
|
||||
virtual void cpy(T *dst,T *src)
|
||||
{
|
||||
comp->cpy(dst,src);
|
||||
}
|
||||
|
||||
virtual void cpy_by_index(int dst,int src)
|
||||
{
|
||||
comp->cpy(buffer+dst,buffer+src);
|
||||
}
|
||||
|
||||
virtual bool sort()=0; //排序
|
||||
};//struct SortBase
|
||||
|
||||
//堆排序
|
||||
template<typename T> class HeapSort:public SortBase<T>
|
||||
{
|
||||
void isift(int i,int n)
|
||||
{
|
||||
int j;
|
||||
T temp;
|
||||
|
||||
SortBase<T>::cpy(&temp,SortBase<T>::buffer+i);
|
||||
|
||||
j=2*(i+1)-1;
|
||||
|
||||
while(j<=n)
|
||||
{
|
||||
SortBase<T>::cpy_by_index(i,j);
|
||||
i=j;
|
||||
j=2*(i+1)-1;
|
||||
if((j<n)&&(SortBase<T>::compare_by_index(j,j+1)<0))j++;
|
||||
|
||||
if(SortBase<T>::compare(temp,SortBase<T>::buffer[j])<0)
|
||||
{
|
||||
SortBase<T>::cpy_by_index(i,j);
|
||||
i=j;
|
||||
j=2*(i+1)-1;
|
||||
}
|
||||
else j=n+1;
|
||||
}
|
||||
else j=n+1;
|
||||
|
||||
SortBase<T>::cpy(SortBase<T>::buffer+i,&temp);
|
||||
}
|
||||
|
||||
SortBase<T>::cpy(SortBase<T>::buffer+i,&temp);
|
||||
}
|
||||
public:
|
||||
|
||||
public:
|
||||
|
||||
/**
|
||||
* 本类构造函数
|
||||
* @param buf 数据缓冲区
|
||||
* @param n 数据个数
|
||||
* @param c 数据大小比较类
|
||||
*/
|
||||
HeapSort(T *buf,int n,Comparator<T> *c=new Comparator<T>()):SortBase<T>(buf,n,c)
|
||||
{
|
||||
}
|
||||
|
||||
bool sort()
|
||||
{
|
||||
if(!SortBase<T>::buffer||SortBase<T>::number<2||!SortBase<T>::comp)
|
||||
return(false);
|
||||
|
||||
int i;
|
||||
int mm=SortBase<T>::number>>1;
|
||||
|
||||
for(i=mm-1;i>=0;i--)
|
||||
isift(i,SortBase<T>::number-1);
|
||||
|
||||
for(i=SortBase<T>::number-1;i>=1;i--)
|
||||
/**
|
||||
* 本类构造函数
|
||||
* @param buf 数据缓冲区
|
||||
* @param n 数据个数
|
||||
* @param c 数据大小比较类
|
||||
*/
|
||||
HeapSort(T *buf,int n,ItemComparator<T> *c=new ItemComparator<T>()):SortBase<T>(buf,n,c)
|
||||
{
|
||||
SortBase<T>::exchane_by_index(0,i);
|
||||
|
||||
isift(0,i-1);
|
||||
}
|
||||
|
||||
return(true);
|
||||
bool sort()
|
||||
{
|
||||
if(!SortBase<T>::buffer||SortBase<T>::number<2||!SortBase<T>::comp)
|
||||
return(false);
|
||||
|
||||
int i;
|
||||
int mm=SortBase<T>::number>>1;
|
||||
|
||||
for(i=mm-1;i>=0;i--)
|
||||
isift(i,SortBase<T>::number-1);
|
||||
|
||||
for(i=SortBase<T>::number-1;i>=1;i--)
|
||||
{
|
||||
SortBase<T>::exchane_by_index(0,i);
|
||||
|
||||
isift(0,i-1);
|
||||
}
|
||||
|
||||
return(true);
|
||||
}
|
||||
};//class HeapSort:public SortBase<T>
|
||||
|
||||
template<typename T>
|
||||
bool Sort(T *data,int count,ItemComparator<T> *comp)
|
||||
{
|
||||
HeapSort<T> hs(data,count,comp);
|
||||
|
||||
return hs.sort();
|
||||
}
|
||||
};//class HeapSort:public SortBase<T>
|
||||
|
||||
template<typename T>
|
||||
bool Sort(T *data,int count,Comparator<T> *comp)
|
||||
{
|
||||
HeapSort<T> hs(data,count,comp);
|
||||
template<typename T>
|
||||
bool Sort(T *data,int count)
|
||||
{
|
||||
Comparator<T> rnc;
|
||||
|
||||
return hs.sort();
|
||||
}
|
||||
HeapSort<T> hs(data,count,&rnc);
|
||||
|
||||
template<typename T>
|
||||
bool Sort(T *data,int count)
|
||||
{
|
||||
Comparator<T> rnc;
|
||||
|
||||
HeapSort<T> hs(data,count,&rnc);
|
||||
|
||||
return hs.sort();
|
||||
}
|
||||
return hs.sort();
|
||||
}
|
||||
|
||||
|
||||
template<typename T>
|
||||
bool Sort(hgl::DataArray<T> &list,Comparator<T> *comp)
|
||||
{
|
||||
return Sort(list.GetData(),
|
||||
list.GetCount(),
|
||||
comp);
|
||||
}
|
||||
template<typename T>
|
||||
bool Sort(hgl::DataArray<T> &list,ItemComparator<T> *comp)
|
||||
{
|
||||
return Sort(list.GetData(),
|
||||
list.GetCount(),
|
||||
comp);
|
||||
}
|
||||
|
||||
template<typename T>
|
||||
bool Sort(hgl::DataArray<T> &list)
|
||||
{
|
||||
Comparator<T> rnc;
|
||||
template<typename T>
|
||||
bool Sort(hgl::DataArray<T> &list)
|
||||
{
|
||||
ItemComparator<T> rnc;
|
||||
|
||||
return Sort<T>(list,&rnc);
|
||||
}
|
||||
return Sort<T>(list,&rnc);
|
||||
}
|
||||
|
||||
/*
|
||||
//仅实现模拟虚拟成员函数即可,无需整个类重载
|
||||
template<> int Comparator<BagCell>::compare(const BagCell &it1,const BagCell &it2) const
|
||||
{
|
||||
int r=it1.GetItemID()-it2.GetItemID();
|
||||
/*
|
||||
//仅实现模拟虚拟成员函数即可,无需整个类重载
|
||||
template<> int ItemComparator<BagCell>::compare(const BagCell &it1,const BagCell &it2) const
|
||||
{
|
||||
int r=it1.GetItemID()-it2.GetItemID();
|
||||
|
||||
if(r!=0)
|
||||
return r;
|
||||
if(r!=0)
|
||||
return r;
|
||||
|
||||
return it1.count-it2.count;
|
||||
}
|
||||
return it1.count-it2.count;
|
||||
}
|
||||
|
||||
void BagManage::Sort()
|
||||
{
|
||||
Comparator<BagCell> comp_baginfo;
|
||||
void BagManage::Sort()
|
||||
{
|
||||
Comparator<BagCell> comp_baginfo;
|
||||
|
||||
BagCell cell_list[BAG_SLOT_COUNT];
|
||||
BagCell cell_list[BAG_SLOT_COUNT];
|
||||
|
||||
hgl::Sort<BagCell>(cell_list,BAG_SLOT_COUNT,&comp_baginfo);
|
||||
}
|
||||
*/
|
||||
}//namespace hgl
|
||||
|
||||
hgl::Sort<BagCell>(cell_list,BAG_SLOT_COUNT,&comp_baginfo);
|
||||
}
|
||||
*/
|
||||
#endif//HGL_ALGORITHM_SORT_INCLUDE
|
||||
|
Loading…
x
Reference in New Issue
Block a user