Fork me on GitHub
摘要: C++ STL中提供了不少和排序相关的算法,包括堆排序(heap_sort)、排序(sort)、稳定排序(stable_sort)、局部排序(partial_sort),时间复杂度均为O(nlogn)。其中,对于堆排序,也提供了不少函数,像入堆push_heap、创建堆make_heap、出堆pop 阅读全文
posted @ 2018-01-29 23:18 ranjiewen 阅读(699) 评论(0) 推荐(0) 编辑