摘要: cb50a_c++_STL_算法_局部排序partial_sort partial_sort(b,se,e)排序一部分,begin,source end,endcout << "部分排序,开头的5个数排序" << endl;partial_sort(ideq.begin(), ideq.begin( 阅读全文
posted @ 2020-02-26 21:57 txwtech 阅读(352) 评论(0) 推荐(0) 编辑
摘要: cb49a_c++_STL_算法_对所有元素排序_sort_stable_sort sort(b,e) sort(b,e,p) stable_sort(b,e) stable_sort(b,e,p) 注意: 不适用于list容器,list有成员函数sort(); cb49a_c++_STL_算法_对 阅读全文
posted @ 2020-02-26 12:12 txwtech 阅读(187) 评论(0) 推荐(0) 编辑
摘要: cb48a_c++_STL_算法_重排和分区random_shuffle_stable_partition random_shuffle()//重排,随机重排,打乱顺序 partition()分区,把符合规则的分成两个区域,比如奇数放一边,偶数放一边.默认之间的位置会变化 stable_partit 阅读全文
posted @ 2020-02-26 11:27 txwtech 阅读(212) 评论(0) 推荐(0) 编辑