我正在尝试通过获取要排序的向量的第一个、最后一个和中心元素的中值来选择快速排序的枢轴。我已经看到了很多以 int 表示的范围的实现,但我试图用迭代器来做到这一点。(无论如何它不应该有那么不同)。但是,我的代码完全符合我的要求。它在 T 是 int 时有效,但对于其他一些类它会超时。有任何想法吗?这是代码:
template <class T>
int ParallelSort::partition(typename vector<T>::iterator &start, typename vector<T>::iterator &end)
{
int Index = (end-start)/2;
T tmpSwap = start[Index];
//the three if statement get the three part median for the vector.
if(start[Index] < *start)
{
start[Index] = *start;
*start = tmpSwap;
}
if(*end < *start)
{
tmpSwap = *end;
*end = *start;
*start = tmpSwap;
}
if(*end < start[Index])
{
tmpSwap = start[Index];
start[Index] = *end;
*end = tmpSwap;
}
T pivot = start[Index];
//rest of the code .....
//i'm sure that the rest of the code works correctly