#include<iostream>
using namespace std;
void HeapBottomUp(int arr[], const int size) {
//使用自底向上算法,维护一个堆
for (int j = size - 1; j > 0; --j) {
int parent = j / 2;
int child = j;
if (j < size - 1 && arr[j] < arr[j+1]) {
//左孩子小于右孩子,因为前一轮比较已经确定右孩子小于父节点,所以直接跳过
continue;
}
if (arr[child] > arr[parent]){
//孩子节点大于父亲节点,则进行交换以维护堆的结构
int tmp = arr[child];
arr[child] = arr[parent];
arr[parent] = tmp;
}
}
}
void HeapSort(int arr[], const int size) {
for (int j = size; j > 0; --j) {
HeapBottomUp(arr, j);
//每进行一次堆的维护或者第一次构造,即可找出数组中最大的元素
//随着堆的规模减小,排序过程逐步完成
int tmp = arr[0];
arr[0] = arr[j - 1];
arr[j - 1] = tmp;
}
}
int main()
{
int arr[] = {2, 5, 3, 2, 3, 0, 8, 1};
int n = sizeof(arr) / sizeof(arr[0]);
HeapSort(arr, n);
for (int j = 0; j < n; ++j) {
cout << arr[j] << " ";
}
cout << endl;
return 0;
}
堆排序
最新推荐文章于 2024-09-04 23:05:17 发布