⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 qsort.h

📁 常用算法与数据结构原代码
💻 H
字号:
// file qsort.h
// quick sort

#ifndef QuickSort_
#define QuickSort_

#include "swap.h"

template<class T>
void quickSort(T a[], int l, int r)
{// Sort a[l:r], a[r+1] has large value.
	if (l >= r) 
		return;
	int i = l,      // left-to-right cursor
		j = r + 1;  // right-to-left cursor
	T pivot = a[l];
	
	// swap elements >= pivot on left side
	// with elements <= pivot on right side
	while (true) 
	{
		do 
		{// find >= element on left side
			i = i + 1;
		} 
		while (a[i] < pivot);
		do 
		{// find <= element on right side
			j = j - 1;
		} 
		while (a[j] > pivot);
		if (i >= j) 
			break;  // swap pair not found
		Swap(a[i], a[j]);
	}
	
	// place pivot
	a[l] = a[j];
	a[j] = pivot;
	
	quickSort(a, l, j-1); // sort left segment
	quickSort(a, j+1, r); // sort right segment
}


template<class T>
void QuickSort(T *a, int n)
{// Sort a[0:n-1] using quick sort.
	// Requires a[n] must have largest key.
	quickSort(a, 0, n-1);
}

#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -