摘要: /************************************************************ *本程序为一个精简版的stl_sort,内部参考了GNU ISO C++ Library *用到了部分C++11的特性,在g++ 4.8.1下编译通过 *************************************************************/#include #include #include #include #include #include //元素数目最大值const int kMaxNum = 10000000;//Sort中所 阅读全文
posted @ 2013-12-21 21:41 wlqsun 阅读(256) 评论(0) 推荐(0) 编辑
摘要: //from stl_algo.h(MinGW g++ 4.8.1) /** * @brief Sort the elements of a sequence using a predicate for comparison. * @ingroup sorting_algorithms * @param __first An iterator. * @param __last Another iterator. * @param __comp A comparison functor. * @return Nothing. ... 阅读全文
posted @ 2013-12-21 11:57 wlqsun 阅读(481) 评论(0) 推荐(0) 编辑