C语言实现最大堆max_heap max_heap结构体 实现以下8个接口 最大堆max_heap完整源码(定义,实现,main函数测试) max_heap结构体 typedef struct max_heap { int *p; int size; int count; } Heap; 实现以下8个接口 Heap *create_heap<