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

📄 c11p642a.txt

📁 Data Abstraction & Problem Solving with C++源码
💻 TXT
字号:
void push_heap(RandomIter first, RandomIter last);void push_heap(RandomIter first, RandomIter last, Compare cmp);// Push an item onto the heap.// The value pushed is *(last-1).// A comparison function object may be supplied.void pop_heap(RandomIter first, RandomIter last);void pop_heap(RandomIter first, RandomIter last, Compare cmp);// Push an item onto the heap.// Swaps first element with *(last-1) and makes [first, last-1]// into a heap.// A comparison function object may be supplied.void make_heap(RandomIter first, RandomIter last);void make_heap(RandomIter first, RandomIter last, Compare cmp);// Turns an existing container into a heap.// A comparison function object may be supplied.void sort_heap(RandomIter first, RandomIter last);void sort_heap(RandomIter first, RandomIter last, Compare cmp);// Turns the heap back into the original container. // A comparison function object may be supplied.

⌨️ 快捷键说明

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