详细介绍数据结构-堆

这篇具有很好参考价值的文章主要介绍了详细介绍数据结构-堆。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

计算机中的堆数据结构

什么是堆

在计算机科学中,堆(Heap)是一种重要的数据结构,它用于在动态分配时存储和组织数据。堆是一块连续的内存区域,其中每个存储单元(通常是字节)都与另一个存储单元紧密相邻。

堆和栈是计算机内存的两种主要部分。其中,栈用于存储局部变量和函数调用的信息,而堆则用于存储动态分配的变量和数据结构。

堆的特点是可以动态地增加和减少内存,而且可以任意分配内存的大小。这意味着你可以在运行时分配内存,以存储例如动态数组,图形数据结构,优先级队列等数据。

堆的好处及适用场景

堆数据结构有许多优点,这使得它在许多计算场景中都非常有用。

  1. 动态内存分配:堆允许我们在运行时动态地分配和释放内存。这意味着我们可以在程序执行的过程中,根据需要创建或删除数据。
  2. 大小不定:与栈不同,堆的大小不是预先确定的。这意味着我们可以用它来存储大量的数据,只要可用的系统内存允许。
  3. 支持自定义数据类型:由于堆是通用的内存分配机制,因此可以用它来存储任何类型的数据,不仅仅是基本类型。

下面是一些适用的场景:

  • 动态数组:堆是创建动态数组(例如动态调整大小的数组)的理想场所。你可以在运行时根据需要增加或减少数组的大小。
  • 优先级队列:优先级队列经常使用堆来实现。在这种情况下,堆的特性允许我们有效地插入和删除元素,以及在O(1)时间内查找最大(或最小)元素。
  • 动态链接列表:在动态链接列表中,我们需要在运行时创建和删除节点。这也需要使用堆内存。
  • 图形和树结构:图形和树结构通常使用堆来实现,因为这些数据结构需要在运行时动态地添加和删除节点。

C++代码实现一个堆并测试

以下是一个简单的最小堆的C++实现。注意这个例子只是为了教育目的,并没有包含一些关键的功能,比如防止溢出或检查是否溢出。

然后,我们可以继续实现其他堆操作,例如删除元素,查找最小元素等。以下是一个更完整的堆实现,包括上述缺失的操作:文章来源地址https://www.toymoban.com/news/detail-725564.html

#include <iostream>  
#include <vector>  
#include <stdexcept>  // for std::out_of_range  
  
class MinHeap {  
private:  
    std::vector<int> data;  // underlying data structure  
  
    int parent(int i) { return (i - 1) / 2; }  // parent index  
    int leftChild(int i) { return 2 * i + 1; }  // left child index  
    int rightChild(int i) { return 2 * i + 2; }  // right child index  
  
    void siftUp(int i) {  // sift element i up to its proper place  
        while (i > 0 && data[parent(i)] > data[i]) {  
            std::swap(data[parent(i)], data[i]);  
            i = parent(i);  
        }  
    }  
  
    void siftDown(int i) {  // sift element i down to its proper place  
        int minIndex = i;  // index of current minimum element  
        int l = leftChild(i);  // left child index  
        if (l < data.size() && data[l] < data[minIndex]) {  
            minIndex = l;  
        }  
        int r = rightChild(i);  // right child index  
        if (r < data.size() && data[r] < data[minIndex]) {  
            minIndex = r;  
        }  
        if (i != minIndex) {  // swap i and minIndex if necessary and repeat siftDown on affected subtree  
            std::swap(data[i], data[minIndex]);  
            siftDown(minIndex);  
        }  
    }  
  
    void siftUpForInsert(int i) {  // sift element i up to its proper place after insert for heap property to be maintained  
        while (i > 0 && data[parent(i)] > data[i]) {  
            std::swap(data[parent(i)], data[i]);  
            i = parent(i);  
        }  
    }  
  
public:  
    void insert(int value) {  // insert value into heap and maintain heap order property  
        data.push_back(value);  // append value to the end of the vector and remember its index (size - 1)  
        siftUpForInsert(data.size() - 1);  // sift up to maintain heap order property (parent is larger than its children) after insert  
    }  
  
    int extractMin() {  // extract the current minimum element from heap and maintain heap order property  
        if (data.empty()) { throw std::out_of_range("Heap is empty"); }  // heap is empty, so there is no min element throw an exception here to indicate that the situation cannot be handled and the program should stop execution with an error message to user indicating the error situation that occurred here.  
        int minElement = data[0];  // store the minimum element in a temporary variable minElement before swapping it with the last element in the vector and deleting it from the vector in the next step (data.pop_back()) as this will change the size of the vector and all further indices will shift downwards by one position in memory.  
        std::swap(data[0], data[data.size() - 1]);  // swap the first element with the last element in the vector as they will have swapped roles after this step (the last element will become the new first element/minimum element in its new position in memory while the first element will become the last element in its new position in memory after this swap operation) for maintaining the heap property after extract operation.  
        data.pop_back();  // remove the last element from the vector as it has just become unnecessary/redundant/no longer required in memory after the previous swapping step to maintain heap order property as required. As it is removed, all further indices will shift downwards by one position in memory for maintaining the heap property after extract operation.  
        siftDown(0);  // sift down the new first element/minimum element to maintain heap order property after extract operation as required. The root/first element is always at index 0 in a heap as shown in all figures above for heap data structure shown above in this code segment also. Heap is a complete binary tree (each node has either two children or no children). Binary tree is a type of tree where each node has
    }

到了这里,关于详细介绍数据结构-堆的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • 数据结构之单链表非常详细介绍(适合小白)

    之前有一篇文章介绍完顺序表,可以点击(顺序表文章)即可看到顺序表的知识后,我们就要开始学习链表了,链表的种类有很多,比如说 单链表 、 双向链表 、 循环或者非循环链表 以及 带头或者不带头链表等 ,那么链表和顺序表有哪些不同呢,相较于顺序表,链表做了哪些

    2024年02月06日
    浏览(42)
  • C++基础-介绍·数据结构·排序·算法

    C++是一门风格严谨又不失自由的开发语言,提供了完整的内存管理、支持函数式编程和面向对象编程,支持模板、多继承、多实现、重载、重写等多态特性。 优势在于目前90%的操作系统、数据库、应用基础架构、硬件嵌入式等都是使用C/C++制作的,而C++是对C的标准扩展,掌握

    2024年02月03日
    浏览(45)
  • 数据结构与算法复杂度介绍

    目录 一、基本概念 二、时间复杂度 【2.1】时间复杂度概念 【2.2】大O的渐进表示法 【2.3】举例时间复杂度计算 三、空间复杂度 数据结构 :相互之间存在一种或者多种特定关系的数据元素的集合。在逻辑上可以分为线性结构,散列结构、树形结构,图形结构等等。 算法 :

    2024年02月10日
    浏览(38)
  • 【数据结构】——单链表超详细介绍(小白必看!!!)

     c语言中的小小白-CSDN博客 c语言中的小小白关注算法,c++,c语言,贪心算法,链表,mysql,动态规划,后端,线性回归,数据结构,排序算法领域. https://blog.csdn.net/bhbcdxb123?spm=1001.2014.3001.5343 给大家分享一句我很喜欢我话: 知不足而奋进,望远山而前行!!! 铁铁们,成功的路上必然是孤

    2024年04月11日
    浏览(68)
  • 博客摘录「 Redis( 缓存篇 ==> 超详细的缓存介绍与数据一致性解决方案 &; 代码实现」

    Redis 旁路缓存 由于高并发原因,先更新数据库和先更新缓存策略都会因为延迟时间而导致数据不一致问题。 两种策略 先删除缓存,再更新数据库; 先更新数据库,再删除缓存。 因为缓存的写入通常要远远快于数据库的写入 ,所以先更新数据库再删缓存,删完缓存,下次访

    2024年02月15日
    浏览(41)
  • 【王道考研】王道数据结构与算法详细笔记(全)

    目录 第一章 数据结构绪论  1.1 数据结构的基本概念 1.2 数据结构的三要素 1.2.1. 数据的逻辑结构 1.2.2. 数据的存储结构(物理结构) 1.2.3. 数据的运算 1.2.4. 数据类型和抽线数据类型 1.3 算法的基本概念 1.4 算法的时间复杂度 1.5 算法的空间复杂度 第二章 线性表 2.1 线性表的定

    2024年02月08日
    浏览(53)
  • 数据结构—串的详细解释(含KMP算法)

    1.1串的定义 串:串是由零个或多个字符组成的有限序列,又叫字符串(其的存储结构包含顺序表存储、单链表存储的形式。) 一般记为s=\\\"a1a2a3....an\\\"(n=0),其中,s是串的名称,用双引号(也可以使用单引号)括起来的字符序列是串的值,注意引号不是串的内容。ai(i=i=n)可以是字母、

    2023年04月09日
    浏览(45)
  • 【数据结构与算法】 - 双向链表 - 详细实现思路及代码

    前几篇文章介绍了怎样去实现单链表、单循环链表, 这篇文章主要介绍 双向链表 以及实现双向链表的步骤,最后提供我自己根据理解实现双向链表的C语言代码 。跟着后面实现思路看下去,应该可以看懂代码,看懂代码后,就对双向链表有了比较抽象的理解了,最后自己再

    2024年02月01日
    浏览(39)
  • 【数据结构】常见排序算法——常见排序介绍、插入排序、直接插入排序、希尔排序

      在计算机科学中,排序是将一组数据按照指定的顺序排列的过程。排序算法由于执行效率的不同可以分为多种不同的算法。   通常情况下,排序算法可以分为两类,即 内部排序和外部排序 。内部排序是指数据全部加载到内存中进行排序,适用于数据量较小的情况,而

    2024年02月08日
    浏览(63)
  • 数据结构与算法 —— 最短路径Dijkstra算法(迪杰斯特拉)详细图解以及python实现

    目录 前言 1. 介绍 2. 加权图 2.1 概念 3. 最短路径 -- Dijkstra 算法 3.1 历史 3.2 Dijkstra 算法的基本思路 3.3 Dijkstra 算法图解 4.  python中dijkstra算法的实现 5. 总结  前两章我们讲到了关于图的基本知识,和广度/深度优先搜索。 本章,我们将介绍 加权图 和 最短路径 的相关知识。 最

    2024年02月12日
    浏览(52)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包