累了,明天再写吧

This commit is contained in:
建峰 2024-07-03 17:42:35 +08:00
parent 97cfafafa2
commit 6243c46d63

View File

@ -25,12 +25,13 @@ bool heap_peek(struct _heap* self, void* obj)
bool heap_push(struct _heap* self, void* obj) bool heap_push(struct _heap* self, void* obj)
{ {
assert(self != NULL);
} }
bool heap_pop(struct _heap* self, void* obj) bool heap_pop(struct _heap* self, void* obj)
{ {
assert(self != NULL);
} }
void heap_setmin(struct _heap* self, bool min_flag) void heap_setmin(struct _heap* self, bool min_flag)