摘要: #include<stdio.h> #include<stdlib.h> #define MAXSIZE 65535 struct Heap { int *data; int size; int capacity; }; typedef struct Heap *MaxHeap; void fix( 阅读全文
posted @ 2019-12-26 18:07 狐耳 阅读(182) 评论(0) 推荐(0) 编辑