• 数据结构——【堆】


    一、堆的相关概念

    1.1、堆的概念

    1、堆在逻辑上是一颗完全二叉树(类似于一颗满二叉树只缺了右下角)。

    2、堆的实现利用的是数组,我们通常会利用动态数组来存放元素,这样可以快速拓容也不会很浪费空间,我们是将这颗完全二叉树用层序遍历的方式储存在数组里的。

    3、堆有两种分别是大根堆小根堆 。

    1.2、堆的分类

    1.2.1、大根堆

    大根堆就是整个完全二叉树任意一个根节点的值都比左右子树的值大    

              

    这就是一个大根堆,所有根节点的值永远比左右子树的大,那么就可以看出,整棵树的根节点,他的值是整个堆中最大的。同时我们也发现没有直接父子关系的节点他们的值没有完全地关系,就像第二层的33和第三层的45以及20,没有规定第三层的元素值必须小于第二层,只要满足根节点比自己左右子树节点的值大即可。

    1.2.3、小根堆

    小根堆表示整个完全二叉树,任意一个根节点的值都比左右子树的值小

                

    以上就是一个简单地小根堆它的定义与大根堆相似,只是跟节点的值小于自己的左右节点的值,同时小根堆的层与层之间没有直接关系的节点的值也没有必然的大小关系

    1.3、堆的结构

    堆的逻辑结构是一颗完全二叉树

    堆的物理结构是一个数组

    我们可以用左右孩子节点和父节点,来表示所有的节点。

    leftchild = parent * 2 + 1;

    rightchild = parent * 2 + 2;

    parent = (child - 1) / 2;(child可以是左孩子,也可以是右孩子)

     如下图:是一个大根堆,父节点的值都大于子节点的值。

    在数组中存储的是:

    10865743

    二、堆的实现

    2.1、堆的功能

    我们是以顺序表的形式实现的堆,其中基本的操作和顺序表的操作是大致一样的。

    下面是我们要实现的堆的一些基础功能

    1. #pragma once
    2. #include
    3. #include
    4. #include
    5. #include
    6. typedef int HPDataType;
    7. typedef struct Heap
    8. {
    9. HPDataType* a;
    10. int size;
    11. int capacity;
    12. }Heap;
    13. //堆的初始化
    14. void HeapInit(Heap* hp);
    15. // 堆的构建
    16. void HeapCreate(Heap* hp, HPDataType* a, int n);
    17. // 堆的销毁
    18. void HeapDestory(Heap* hp);
    19. // 堆的插入
    20. void HeapPush(Heap* hp, HPDataType x);
    21. // 堆的删除
    22. void HeapPop(Heap* hp);
    23. // 取堆顶的数据
    24. HPDataType HeapTop(Heap* hp);
    25. // 堆的数据个数
    26. int HeapSize(Heap* hp);
    27. // 堆的判空
    28. int HeapEmpty(Heap* hp);
    29. //打印堆
    30. void HeapPrint(Heap* hp);
    31. //交换函数
    32. void Swap(HPDataType* p1, HPDataType* p2);

    2.2、堆函数的实现

    1. #include"Heap.h"
    2. //初始堆
    3. void HeapInit(Heap* hp)
    4. {
    5. assert(hp);
    6. hp->a = NULL;
    7. hp->size = 0;
    8. hp->capacity = 0;
    9. }
    10. // 堆的销毁
    11. void HeapDestory(Heap* hp)
    12. {
    13. assert(hp);
    14. free(hp->a);
    15. hp->a = NULL;
    16. hp->size = hp->capacity = 0;
    17. }
    18. //交换函数
    19. void Swap(HPDataType* p1, HPDataType* p2)
    20. {
    21. HPDataType temp = *p1;
    22. *p1 = *p2;
    23. *p2 = temp;
    24. }
    25. //向上调整(前面的是堆)
    26. void AdjustUp(HPDataType* a, int child)
    27. {
    28. int parent = (child - 1) / 2;
    29. while (child > 0)
    30. {
    31. //小堆
    32. if (a[child] < a[parent])
    33. {
    34. Swap(&a[child], &a[parent]);
    35. child = parent;
    36. parent = (parent - 1) / 2;
    37. }
    38. else
    39. {
    40. break;
    41. }
    42. }
    43. }
    44. //打印堆
    45. void HeapPrint(Heap* hp)
    46. {
    47. assert(hp);
    48. for (size_t i = 0; i < hp->size; i++)
    49. {
    50. printf("%d ",hp->a[i]);
    51. }
    52. printf("\n");
    53. }
    54. // 堆的插入
    55. void HeapPush(Heap* hp, HPDataType x)
    56. {
    57. assert(hp);
    58. if (hp->size == hp->capacity)
    59. {
    60. int newcapacity = hp->capacity == 0 ? 4 : hp->capacity * 2;
    61. HPDataType* tem = (HPDataType*)realloc(hp->a,sizeof(HPDataType)*newcapacity);
    62. if (tem == NULL)
    63. {
    64. perror("malloc fail");
    65. exit(-1);
    66. }
    67. hp->a = tem;
    68. hp->capacity = newcapacity;
    69. }
    70. hp->a[hp->size] = x;
    71. hp->size++;
    72. AdjustUp(hp->a, hp->size - 1);
    73. }
    74. //向下调整(大堆或者小堆)
    75. void AdjustDown(HPDataType* a, int n, int parent)
    76. {
    77. int child = parent * 2 + 1;
    78. while (child < n)
    79. {
    80. //小堆
    81. if (child + 1 < n && a[child+1] < a[child]) //找到两个孩子节点较小的值
    82. {
    83. child++;
    84. }
    85. //建小堆
    86. if (a[child]<a[parent])
    87. {
    88. Swap(&a[child], &a[parent]);
    89. parent = child;
    90. child = parent * 2 + 1;
    91. }
    92. else
    93. {
    94. break;
    95. }
    96. }
    97. }
    98. // 堆顶元素的删除
    99. void HeapPop(Heap* hp)
    100. {
    101. assert(hp);
    102. assert(hp->size>0);
    103. Swap(&hp->a[0], &hp->a[hp->size-1]);
    104. --hp->size;
    105. AdjustDown(hp->a, hp->size, 0); //大堆
    106. }
    107. // 堆的构建
    108. void HeapCreate(Heap* hp, HPDataType* a, int n)
    109. {
    110. assert(hp);
    111. assert(a);
    112. hp->a = (HPDataType*)malloc(sizeof(HPDataType) * n);
    113. if (hp->a == NULL)
    114. {
    115. perror("malloc fail");
    116. exit(-1);
    117. }
    118. hp->size = n;
    119. hp->capacity = n;
    120. memcpy(hp->a, a,sizeof(HPDataType) * n);
    121. //建堆
    122. for (int i = 1; i < n; i++)
    123. {
    124. AdjustUp(hp->a, i);
    125. }
    126. }
    127. // 取堆顶的数据
    128. HPDataType HeapTop(Heap* hp)
    129. {
    130. assert(hp);
    131. assert(hp->size > 0);
    132. return hp->a[0];
    133. }
    134. // 堆的判空
    135. int HeapEmpty(Heap* hp)
    136. {
    137. assert(hp);
    138. return hp->size == 0;
    139. }
    140. // 堆的数据个数
    141. int HeapSize(Heap* hp)
    142. {
    143. assert(hp);
    144. return hp->size;
    145. }

    2.3、堆的插入

    堆是一个完全二叉树,在插入元素时是在堆的末尾插入的,但是为了把一个元素插入后,使这个堆还是一个堆,我们需要对堆中的数据尽心再次调整。

    向上调整

    我们插入一个元素是,在进行向上调整,把这个数放到合适的位置。我们来看看代码实现

    1. void AdjustUp(HPDataType* a, int child)
    2. {
    3. int parent = (child - 1) / 2;
    4. while (child > 0)
    5. {
    6. //大堆
    7. if (a[child] > a[parent])
    8. {
    9. Swap(&a[child], &a[parent]);
    10. child = parent;
    11. parent = (parent - 1) / 2;
    12. }
    13. else
    14. {
    15. break;
    16. }
    17. }
    18. }

    下面这张图帮助大家理解

    接下来我们来实现堆的插入

    我们还是和顺序表一样,相对其扩容情况进行讨论,当hp->size==hp->capacity时,证明没有多余空间了,我们需要增加空间,这里还是使用,realloc函数,将这个数插入进去后,对这个数进行向上调整,使之变成一个新堆。

    1. void HeapPush(Heap* hp, HPDataType x)
    2. {
    3. assert(hp);
    4. if (hp->size == hp->capacity)
    5. {
    6. int newcapacity = hp->capacity == 0 ? 4 : hp->capacity * 2;
    7. HPDataType* tem = (HPDataType*)realloc(hp->a,sizeof(HPDataType)*newcapacity);
    8. if (tem == NULL)
    9. {
    10. perror("malloc fail");
    11. exit(-1);
    12. }
    13. hp->a = tem;
    14. hp->capacity = newcapacity;
    15. }
    16. hp->a[hp->size] = x;
    17. hp->size++;
    18. AdjustUp(hp->a, hp->size - 1);
    19. }

    2.4、堆的删除

    向上调整

    我们在堆中删除一个元素时删除的时堆顶元素,也就是第一个元素,我们一般会先让第一个元素和最后一个元素交换位置,然后hp->size--;为了让新的数据成为堆,我们将第一个数据向下调整,使之变成一个新堆。

    我们来看看向下调整的代码该如何写:

    1. void AdjustDown(HPDataType* a, int n, int parent)
    2. {
    3. int child = parent * 2 + 1;
    4. while (child < n)
    5. {
    6. //小堆
    7. if (child + 1 < n && a[child+1] > a[child]) //找到两个孩子节点较大的值
    8. {
    9. child++;
    10. }
    11. //建小堆
    12. if (a[child]>a[parent])
    13. {
    14. Swap(&a[child], &a[parent]);
    15. parent = child;
    16. child = parent * 2 + 1;
    17. }
    18. else
    19. {
    20. break;
    21. }
    22. }
    23. }

    我们来看看这张图跟好的理解向下调整:

    接下来我们来实现堆的删除

    我们先考虑一下hp->size的临界问题,用一个断言就可以避免此类问题。

    1. void HeapPop(Heap* hp)
    2. {
    3. assert(hp);
    4. assert(hp->size>0);
    5. Swap(&hp->a[0], &hp->a[hp->size-1]);
    6. --hp->size;
    7. AdjustDown(hp->a, hp->size, 0); //大堆
    8. }

    三、建堆

    给一个数组我们如何把这个数组建成堆呢?

    一般我们都有两种方法:

    3.1、自顶向下(向上调整)

    我们来看看代码如何实现

    1. void HeapCreate(Heap* hp, HPDataType* a, int n)
    2. {
    3. assert(hp);
    4. assert(a);
    5. hp->a = (HPDataType*)malloc(sizeof(HPDataType) * n);
    6. if (hp->a == NULL)
    7. {
    8. perror("malloc fail");
    9. exit(-1);
    10. }
    11. hp->size = n;
    12. hp->capacity = n;
    13. memcpy(hp->a, a,sizeof(HPDataType) * n);
    14. //建堆
    15. for (int i = 1; i < n; i++)
    16. {
    17. AdjustUp(hp->a, i);
    18. }
    19. }

    我们使用错位相减的方式来计算 自顶向下(向上调整)的时间复杂度

    时间复杂度:O(nlog(2)^n)

    3.2、自低向上(向下调整)

    我们来看看代码如何实现

    1. void HeapCreate(Heap* hp, HPDataType* a, int n)
    2. {
    3. assert(hp);
    4. assert(a);
    5. hp->a = (HPDataType*)malloc(sizeof(HPDataType) * n);
    6. if (hp->a == NULL)
    7. {
    8. perror("malloc fail");
    9. exit(-1);
    10. }
    11. hp->size = n;
    12. hp->capacity = n;
    13. memcpy(hp->a, a,sizeof(HPDataType) * n);
    14. //建堆
    15. //向下调整算法
    16. for (int i = (n - 1 - 1) / 2; i >= 0; i--)
    17. {
    18. AdjustDown(arr, n, i);
    19. }
    20. }

    和自顶向下一样,还是错位相减来计算时间复杂度

    时间复杂度:O(n)

    四、堆的排序

    我们学习堆,有一个很有用的地方,就是可以用堆进行排序,因为我们知道,大堆堆顶元素是数组中最小的,小队堆顶是数组中元素最小的。

    当我们需要将一个数组进行从小到大的排序时:

    1.将该数组建成一个大堆

    2.第一个数和最后一个数交换,然后把交换的那个较大的数不看做堆里面

    3.前n-1和数进行向下调整算法,选出大的数放到根节点,再跟倒数第二个交换......

     代码如下:

    1. void HeapSort(int* a,int n)
    2. {
    3. int i = 0;
    4. //这里用向下调整算法来建堆,因为时间复杂度只有O(N)
    5. for (i = (n - 1 - 1) / 2; i >= 0; i--)
    6. {
    7. AdjustDown(a, n, i);
    8. }
    9. int end = n - 1;
    10. while (end > 0)
    11. {
    12. Swap(&amp;a[0], &amp;a[end]);
    13. AdjustUp(a, end, 0);
    14. --end;
    15. }
    16. }

    时间复杂度:O(Nlog(2)^N)

    五、topk问题

    我们在做一些编程题会遇到一类问题,就是topk问题

    topk问题指的有一组很大的数据,我们需要返回它最大(最小)的前K个元素。

    这里我们就可以用堆排序很好的解决此类问题。

    这里力扣平台有一个练习题,我们一起来看一看

    面试题 17.14. 最小K个数 - 力扣(LeetCode)

    思路:我们先建立一个大堆,先把前K个元素建成一个大堆,然后在将剩下的数和堆顶元素进行比较,如过大于堆顶数据,我们就和堆顶元素进行交换,然后将现在的堆顶元素向下调整,前k个数就是这组数据中最小的前K个数。

    我们来看看该如何实现:

    1. void Swap(int* p1, int* p2)
    2. {
    3. int temp = *p1;
    4. *p1 = *p2;
    5. *p2 = temp;
    6. }
    7. //向下调整
    8. void AdjustDown(int* a, int n, int parent)
    9. {
    10. int child = parent * 2 + 1;
    11. while (child < n)
    12. {
    13. //大堆
    14. if (child + 1 < n && a[child+1] > a[child]) //找到两个孩子节点较小的值
    15. {
    16. child++;
    17. }
    18. //建大堆
    19. if (a[child]>a[parent])
    20. {
    21. Swap(&a[child], &a[parent]);
    22. parent = child;
    23. child = parent * 2 + 1;
    24. }
    25. else
    26. {
    27. break;
    28. }
    29. }
    30. }
    31. int* smallestK(int* arr, int arrSize, int k, int* returnSize)
    32. {
    33. if(k==0)
    34. {
    35. *returnSize=0;
    36. return NULL;
    37. }
    38. int *ret=(int*)malloc(sizeof(int)*k);
    39. for(int i=0;i<k;i++)
    40. {
    41. ret[i]=arr[i];
    42. }
    43. //给前k个元素建大堆
    44. for(int i=(k-1-1)/2;i>=0;i--)
    45. {
    46. AdjustDown(ret, k, i);
    47. }
    48. for(int i=k;i<arrSize;i++)
    49. {
    50. if(ret[0]>arr[i])
    51. {
    52. ret[0]=arr[i];
    53. AdjustDown(ret,k,0);
    54. }
    55. }
    56. *returnSize=k;
    57. return ret;
    58. }

    六、大量数据中的topk问题

    比如我们现在有100000个数据,我们要找到最大的10个数据,我们需要改怎么实现,还是利用topk解决,我们先将前100个数据建成一个小堆

    1. //创建一个文件,并且随机生成一些数字
    2. void CreateDataFile(const char* filename, int N)
    3. {
    4. FILE* Fin = fopen(filename, "w");
    5. if (Fin == NULL)
    6. {
    7. perror("fopen fail");
    8. exit(-1);
    9. }
    10. srand(time(0));
    11. for (int i = 0; i < N; i++)
    12. {
    13. fprintf(Fin, "%d ", rand() % 10000);
    14. }
    15. }
    16. void PrintTopK(const char* filename, int k)
    17. {
    18. assert(filename);
    19. FILE* fout = fopen(filename, "r");
    20. if (fout == NULL)
    21. {
    22. perror("fopen fail");
    23. return;
    24. }
    25. int* minheap = (int*)malloc(sizeof(int) * k);
    26. if (minheap == NULL)
    27. {
    28. perror("malloc fail");
    29. return;
    30. }
    31. //读前k个数
    32. for (int i = 0; i < k; i++)
    33. {
    34. //空格和换行默认是多个值之间的间隔
    35. fscanf(fout, "%d", &amp;minheap[i]);
    36. }
    37. //建k个数的堆
    38. for (int j = (k - 1 - 1) / 2; j >= 0; j--)
    39. {
    40. AdjustDown(minheap, j, k, cmp_down);
    41. }
    42. //读取后N-K个
    43. int x = 0;
    44. while(fscanf(fout,"%d",&amp;x)!=EOF)
    45. {
    46. if (x > minheap[0])
    47. {
    48. minheap[0] = x;
    49. AdjustDown(minheap, 0, k, cmp_down);
    50. }
    51. }
    52. for (int i = 0; i < k; i++)
    53. {
    54. printf("%d ", minheap[i]);
    55. }
    56. printf("\n");
    57. free(minheap);
    58. fclose(fout);
    59. }
    60. int main()
    61. {
    62. //CreateDataFile("data.txt", 1000000);
    63. //找前10个最大的数
    64. PrintTopK("data.txt", 10);
    65. return 0;
    66. }

    这里只截取了一小部分

    我们提前改10个较大的数,验证返回的正确错误。

    返回的就是我们改的10个大的数字,证明返回正确,而且效率极其的高!

    总结:堆的知识就介绍到这里,如有疑问或者质疑,请在评论区发出来,我会尽全力帮大家解决,成长的路上少不了你们的支持,你们的三连是我进步最大的动力,还望大佬们多多支持,一起加油!共勉!

  • 相关阅读:
    vue3【计算属性与监听-详】
    Linux 和 Window 软件包管理器
    四旋翼飞行器基本模型(Matlab&Simulink)
    vue3使用富文本编辑器wangEditor-v5(未使用composition api写法)
    Python机器学习、深度学习提升气象、海洋、水文领域实践应用
    C语言定制shell命令
    【微信公众号开发】1.1 微信公众号开发课程内容介绍
    CentOS常用基础命令汇总
    前端构建工具用得好,构建速度提升 10 倍
    Shell脚本编程实践——第1关:编写一个脚本,求斐波那契数列的前10项及总和
  • 原文地址:https://blog.csdn.net/m0_69323023/article/details/132834448