堆的实现

堆的性质

1.堆中某个节点的值总是不大于或不小于其父亲节点的值;
2.堆总是一颗完全二叉树。

堆的实现

tree.h

#define _CRT_SECURE_NO_WARNINGS 1
#pragma once
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>

typedef int HPDataType;
typedef struct Heap
{
	HPDataType* _a;
	int _size;
	int _capacity;
}Heap;

// 堆的构建
Heap* HeapCreate(HPDataType* a, int n);
//向下调整
void AdjustDown(int* a, int root, int n);
//向上调整算法
void AdjustUp(int* a, int root, int n);
// 堆的销毁
void HeapDestory(Heap* hp);
//交换函数
void Swap(HPDataType* left, HPDataType *right);
// 堆的插入
void HeapPush(Heap* hp, HPDataType x);
// 堆的删除
void HeapPop(Heap* hp);
// 取堆顶的数据
HPDataType HeapTop(Heap* hp);
// 堆的数据个数
int HeapSize(Heap* hp);
// 堆的判空
int HeapEmpty(Heap* hp);
// 对数组进行堆排序
void HeapSort(int* a, int n);
// TopK问题:找出N个数里面最大/最小的前K个问题。
// 比如:未央区排名前10的泡馍,西安交通大学王者荣耀排名前10的韩信,全国排名前10的李白。等等问题都是Topk问题,
// 需要注意:
// 找最大的前K个,建立K个数的小堆
// 找最小的前K个,建立K个数的大堆
void PrintTopK(int* a, int n, int k);

tree.c

#define _CRT_SECURE_NO_WARNINGS 1
#include "tree.h"

// 堆的构建
Heap* HeapCreate(HPDataType* a, int n)
{
	Heap* hp = (Heap*)malloc(sizeof(Heap));
	int i = 0;
	int root = (n - 1 - 1) / 2;
	hp->_a = (HPDataType *)malloc(sizeof(HPDataType)*n);
	hp->_capacity = n;
	hp->_size = n;
	memcpy(hp->_a, a, sizeof(Heap)*n);
	return hp;
}

//交换函数
void Swap(HPDataType* left, HPDataType *right)
{
	HPDataType tmp = *left;
	*left = *right;
	*right = tmp;
}

//向下调整算法
void AdjustDown(HPDataType* a, int root,int n)
{
	int parent = root;//首先找到该孩子结点的双亲,然后调整
	int child = parent * 2 + 1;
	while (child < n)//终止条件:child不为0
	{
		if (child + 1 < n && a[child + 1] < a[child])
		{
			child++;
		}
		if (a[parent] > a[child])
		{
			Swap(&a[child], &a[parent]);
			parent = child;
			child = parent * 2 + 1;
		}
		else
		{
			break;
		}
	}
}

//向上调整算法
void AdjustUp(int* a, int child)
{
	int parent = (child - 1) / 2;
	while (child > 0)
	{
		if (a[child] < a[parent])
		{
			Swap(&a[child], &a[parent]);
			child = parent;
			parent = (child - 1) / 2;
		}
		else
		{
			break;
		}
	}
}

// 对数组进行堆排序
void HeapSort(int* a, int n)
{
	int root = (n - 2) / 2;
	for (; root >= 0; root--)
	{
		AdjustDown(a, 0, n);
	}
	int end = n - 1;
	while (end > 0)
	{
		Swap(&a[0], &a[end]);
		AdjustDown(a, end, 0);
		--end;
	}
}

// 堆的销毁
void HeapDestory(Heap* hp)
{
	assert(hp);
	free(hp->_a);
	hp->_a = NULL;
	hp->_capacity = 0;
	hp->_size = 0;
}

// 堆的插入
void HeapPush(Heap* hp, HPDataType x)
{
	assert(hp);
	if (hp->_size == hp->_capacity)
	{
		hp->_capacity *= 2;
		hp->_a = (HPDataType*)realloc(hp->_a,sizeof(HPDataType)*(hp->_capacity));
	}
	hp->_a[hp->_size] = x;
	hp->_size++;
	AdjustUp(hp->_a, hp->_size - 1);
}

// 堆的删除
void HeapPop(Heap* hp)
{
	Swap(&hp->_a[0], &hp->_a[hp->_size - 1]);
	hp->_size--;
	AdjustDown(hp->_a, 0, hp->_size);
}

// 取堆顶的数据
HPDataType HeapTop(Heap* hp)
{
	return hp->_a[0];
}

// 堆的数据个数
int HeapSize(Heap* hp)
{
	assert(hp);
	return hp->_size;
}

// 堆的判空
int HeapEmpty(Heap* hp)
{
	assert(hp);
	return hp->_size == 0 ? 1 : 0;
}

// TopK问题:找出N个数里面最大/最小的前K个问题。
// 比如:未央区排名前10的泡馍,西安交通大学王者荣耀排名前10的韩信,全国排名前10的李白。等等问题都是Topk问题,
// 需要注意:
// 找最大的前K个,建立K个数的小堆
// 找最小的前K个,建立K个数的大堆
void PrintTopK(int* a, int n, int k)
{

	int num = n;
	for (int i = (k - 2) / 2; i > 0; --i)
	{
		AdjustDown(a, i, k);
	}
	for (int i = k; i < num; ++i)
	{
		if (a[0] < a[i])
		{
			Swap(&a[0], &a[i]);
		}
		AdjustDown(a, 0, k);
	}
	for (int i = 0; i < k; ++i)
	{
		printf("%d ", a[i]);
	}
}

test.c

#define _CRT_SECURE_NO_WARNINGS 1
#include "tree.h"


int main()
{

	int arr[10] = { 23, 56, 78, 9, 3, 4, 66, 88, 34, 25 };
	/*HeapCreate(&hp, arr, 10);
	HeapSort(arr, 10);*/
	PrintTopK(arr, 10, 3);
	system("pause");
	return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值