1 Star 0 Fork 0

freshman2233/数据结构

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
0627-c-C语言数据结构-排序-堆初始化.c 683 Bytes
一键复制 编辑 原始数据 按行查看 历史
#include<stdio.h>
#include<stdlib.h>
//子节点
typedef struct _otherInfo
{
int i;
int j;
}OtherInfo;
//堆元素
typedef struct _minHeepNode
{
int value;
OtherInfo otherInfo;
}MinHeapNode,*PMinHeapNode;
//最小堆
typedef struct _minPQ
{
PMinHeapNode heap_array;//指向堆元素的数组
int heap_size; //堆元素的个数
int capacity; //堆元素的容量
}MinHeap,*PMinHeap;
//pq指向堆,capacity为堆元素数组的初始化大小
void init_min_heap(PMinHeap pq, int capacity){
pq->capacity = capacity;
pq->heap_size = 0;
pq->heap_array = (PMinHeapNode)malloc(sizeof(MinHeapNode) * pq->capacity);
return;
}
int main()
{
//创建堆
return 0;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/freshman2233/data-structure.git
git@gitee.com:freshman2233/data-structure.git
freshman2233
data-structure
数据结构
master

搜索帮助