📄 hsort.h
字号:
// file hsort.h
//heap sort
#ifndef HeapSort_
#define HeapSort_
#include "maxheap.h"
template <class T>
void HeapSort(T a[], int n)
{// Sort a[1:n] using the heap sort method.
// create a max heap of the elements
MaxHeap<T> H(1);
H.Initialize(a,n,n);
// extract one by one from the max heap
T x;
for (int i = n-1; i >= 1; i--) {
H.DeleteMax(x);
a[i+1] = x;
}
// save array a from heap destructor
H.Deactivate();
}
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -