摘要: #include <stdio.h> #include <stdlib.h> #include <string.h> //堆的算法实现 #define DEFAULT_CAPCITY 128 typedef struct _Heap { int* arr; //存储堆元素的数组 int size; 阅读全文
posted @ 2023-03-04 19:35 wshidaboss 阅读(21) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <Windows.h> #include <iomanip> //优先级队列的实现 using namespace std; #define MaxSize 5 typedef int DataType; //队列中的元素类型 typedef 阅读全文
posted @ 2023-03-04 10:30 wshidaboss 阅读(63) 评论(0) 推荐(0) 编辑