堆的基本操作

Heap.h

#ifndef __Heap_H_
#define __Heap_H_


//定义一个函数指针
//typedef int (*PF)(HDataType left, HDataType right);

typedef int HDataType;
typedef struct Heap
{
	HDataType* _array;
	int _capacity;//容量
	int _size;//元素个数
	//PF _pCom;
}Heap;



//int Greater(HDataType left, HDataType right);
//int Less(HDataType left, HDataType right);

void HeapInit(Heap*hp, int*arr, int size);//堆的初始化
HDataType HeapTop(Heap*hp);//获取堆顶元素
void _CheckCapacity(Heap*hp);//检测容量
void HeapInsert(Heap*hp, HDataType data);//插入
int HeapEmpty(Heap*hp);//判断堆是否为空
void HeapDestory(Heap*hp);//堆的销毁
void HeapErase(Heap*hp);//删除堆顶元素
void HeapPrint(Heap*hp);//打印堆


void HeapSort(int*arr,int size);//堆排序
#endif

Heap.c

#include"Heap.h"
#include<stdio.h>
#include<stdlib.h>
#include<assert.h>

void Swap(HDataType* x, HDataType* y)
{
	HDataType tmp = *x;
	*x = *y;
	*y = tmp;
}



//int Greater(HDataType left, HDataType right)
//{
//	return left > right;
//}
//
//int Less(HDataType left, HDataType right)
//{
//	return left < right;
//}



//向下调整
void AdjustDown(int parent, HDataType*array, int size)
{
	//标记左右孩子中较小的孩子,默认左孩子较小
	int child = parent * 2 + 1;
	//找左右孩子中最小的孩子
	while (child < size)//保证左孩子存在
	{
		//保证右孩子存在,才能进行左右孩子大小比较
		if (child + 1 < size)
		{
			if (array[child] > array[child + 1])
			{
				child = child + 1;
			}
		}
		//将左右孩子中较小的那一个与父节点进行比较,若比父节点还小,则要交换(把父节点调整下来)
		if (array[parent] > array[child])
		{
			Swap(&array[parent], &array[child]);
			//调整后可能导致child为根的子树不满足堆的性质
			parent = child;
			child = parent * 2 + 1;
		}
		else
		{
			break;
		}
	}
	
}



//堆的初始化
void HeapInit(Heap*hp, int*arr, int size)
{
	assert(hp);
	hp->_array = (HDataType*)malloc(sizeof(HDataType)*size);
	if (hp->_array == NULL)
	{
		exit(1);
	}

	//将数组元素全部拷贝进堆空间
	for (int i = 0; i < size; i++)
	{
		hp->_array[i] = arr[i];
	}
	hp->_capacity = size;
	hp->_size = size;


	//调整元素位置,使之成为堆
	//从最后一个非叶子节点依次调整
	int root = (size - 1) / 2;
	for (root; root>=0; root--)
	{
		AdjustDown(root, hp->_array, hp->_size);
	}
	
}



//获取堆顶元素
HDataType HeapTop(Heap*hp)
{
	assert(hp);
	return hp->_array[0];
}


//检测容量
void _CheckCapacity(Heap*hp)
{
	assert(hp);
	if (hp->_size == hp->_capacity)
	{
		int New_capacity = hp->_capacity * 2;
		hp->_array = (HDataType*)realloc(hp->_array, sizeof(HDataType)*New_capacity);
		if (hp->_array == NULL)
		{
			exit(1);
		}
		hp->_capacity = New_capacity;
	}
}



//向上调整算法
//思路:因为前提已经是一个堆了,插入元素在最后插入,所以只需要调整插入位置依次往上的子树,直到根节点也满足
void AdjustUp(int child, HDataType*array, int size)
{
	//方式一:
	int parent = (child - 1) / 2;
	while (parent >= 0&&parent<child)
	{
		if (array[child] < array[parent])
		{
			Swap(&array[parent], &array[child]);
			child = parent;
			parent = (child - 1) / 2;
		}
		else
		{
			break;
		}
	}


	//方式二:
	/*int parent = (child - 1) / 2;
	while (child)
	{
		if (array[child] < array[parent])
		{
			Swap(&array[parent], &array[child]);
			child = parent;
			parent = (child - 1) / 2;
		}
		else
		{
			return;
		}
	}*/
	
}
//插入
void HeapInsert(Heap*hp, HDataType data)
{
	assert(hp);
	_CheckCapacity(hp);
	//1.先将元素放入堆中
	hp->_array[hp->_size] = data;
	hp->_size++;
	//2.向上调整
	AdjustUp(hp->_size - 1, hp->_array, hp->_size);
}



//判断堆是否为空(为空返回1,不为空返回0)
int HeapEmpty(Heap*hp)
{
	return hp->_size == 0;
}



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

//删除堆顶元素
void HeapErase(Heap*hp)
{
	//如果为空则无法删除元素
	if (HeapEmpty(hp))
	{
		exit(1);
	}
	//不为空,
	//思路:将堆顶元素与堆的最后一个元素交换(即堆顶元素换到最后),然后size--,就删掉了堆顶元素
	//删掉后,堆的结构可能被破坏,所以再向下调整
	//HDataType top=HeapTop(hp);
	Swap(&(hp->_array[0]), &(hp->_array[hp->_size - 1]));
	hp->_size--;
	AdjustDown(0, hp->_array, hp->_size);

}


//打印堆
void HeapPrint(Heap*hp)
{
	assert(hp);
	for (int i = 0; i < hp->_size; i++)
	{
		printf("%d ", hp->_array[i]);
	}
}




void HeapAdjust(int root, int*arr, int size)
{
	//默认左孩子值较小
	int child = root * 2 + 1;
	while (child<size)//保证左孩子存在
	{
		if(child + 1 < size)//保证右孩子存在
		{
			//比较左右孩子的值,更新child
			if (arr[child] > arr[child + 1])
			{
				child = child + 1;
			}
		}
		//将最小值与当前子树的根节点进行比较,若小于子树根节点,则数据进行调换
		if (arr[root] > arr[child])
		{
			Swap(&arr[root], &arr[child]);
			root = child;
			child = root * 2 + 1;
		}
		else
		{
			break;
		}
	}
}
//堆排:降序(建小堆)
void HeapSort(int*arr, int size)
{
	//1.先建堆(利用向下调整算法,从第一个非叶子节点开始调)
	int parent = (size - 1) / 2;
	for (int root = parent; root >= 0; root--)
	{
		HeapAdjust(root, arr, size);//向下调整
	}
	//2.把堆顶元素和最后一个元素调换,然后删除最后一个元素(不能用size--);再开始向下调整
	int end = size - 1;//用end标记尾元素下标,每次排好一个后,end--,继续排其他元素
	while (end)
	{
		Swap(&arr[0], &arr[end]);
		HeapAdjust(0, arr, end);
		end--;
	}
}

test.c

#include"Heap.h"
#include<stdio.h>
#include<stdlib.h>
int main()
{

	int arr[] = { 10, 8, 7, 6, 5, 3};
	//int arr[] = { 2,3,4,1,5};
	Heap hp;
	HeapInit(&hp, arr, 6);
	HeapPrint(&hp);
	HeapDestory(&hp);

	//HeapSort(arr, sizeof(arr) / sizeof(arr[0]));

	/*printf("\n");
	HeapInsert(&hp, 11);
	HeapPrint(&hp);
	printf("\n");
	HeapBubble(&hp);
	HeapPrint(&hp);*/
	//int ret = HeapEmpty(&hp);
	//printf("ret=%d\n", ret);
	/*HeapErase(&hp);
	HeapErase(&hp);
	HeapPrint(&hp);*/


	system("pause");
	return 0;
}

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值