⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 llheap.h

📁 模拟器提供了一个简单易用的平台
💻 H
字号:
#ifndef _LLHEAP_H_#define _LLHEAP_H_struct LLHeapElem {  bool valid;  int value;};struct LLHeap {  int max_elems;  int num_elems;  LLHeapElem *elem_list;};LLHeap* init_heap (int max_elems);void delete_heap (LLHeap *h);void insert (LLHeap *h, int new_val);int delete_min (LLHeap *h, int &value);void change_key (LLHeap *h, int pos, int new_val);bool heap_check_valid (LLHeap *h, int index);bool is_empty (LLHeap *h);#endif _LLHEAP_H_

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -