2015年5月30日

【STL源码剖析读书笔记】自己实现Heap算法之MyHeap(底层容器用vector)

摘要: MyHeap.h#ifndef MY_HEAP_H#define MY_HEAP_H#include#include#define max_value -99999999//仿函数templatestruct MyLess{ bool operator()(const T& x, const T& ... 阅读全文

posted @ 2015-05-30 18:47 ruan875417 阅读(213) 评论(0) 推荐(0) 编辑

导航