摘要:
#include <stdio.h> #include <stdlib.h> #include <string.h> //堆的算法实现 #define DEFAULT_CAPCITY 128 typedef struct _Heap { int* arr; //存储堆元素的数组 int size; 阅读全文
摘要:
#include <iostream> #include <Windows.h> #include <iomanip> //优先级队列的实现 using namespace std; #define MaxSize 5 typedef int DataType; //队列中的元素类型 typedef 阅读全文