码迷,mamicode.com
首页 > 其他好文 > 详细

STL 源码剖析 算法 stl_algo.h -- partition

时间:2014-07-19 08:26:15      阅读:248      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   2014   

本文为senlie原创,转载请保留此地址:http://blog.csdn.net/zhengsenlie


partition

------------------------------------------------------------------------

描述:partition 会将区间[first,last) 中的元素重新排列。所有被一元条件运算 pred 判定为 true 的元素,都会被放在区间的前段,
被判定为 false 的元素,都会被放在区间的后段。
partition 不稳定,不保证 partition 后元素保留在原始相对位置, stable_partition 稳定
思路:
1.first往下查找,遇到"符合移动条件"(pred不成立)的就停下来
2.last往上查找,遇到"符合移动条件"(pred成立)的就停下来
3.交换 *first 和 *last, ++first, --last
图6-6d
复杂度:O(n)
源码:
//所有被 pred 判定为 true 的元素,都被放到前段
//被 pred 判定为 false 的元素,都被放到后段
//不保证保留相对位置
template <class BidirectionalIterator, class Predicate>
BidirectionalIterator partition(BidirectionalIterator first,
                                BidirectionalIterator last, Predicate pred) {
  while (true) {
    while (true)
      if (first == last)
        return first;
      else if (pred(*first))
        ++first;
      else
        break;
    --last;
    while (true)
      if (first == last)
        return first;
      else if (!pred(*last))
        --last;
      else
        break;
    iter_swap(first, last);
    ++first;
  }
}


示例:
int A[] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10};
const int N = sizeof(A)/sizeof(int);
partition(A, A + N,
          compose1(bind2nd(equal_to<int>(), 0),
                   bind2nd(modulus<int>(), 2)));
copy(A, A + N, ostream_iterator<int>(cout, " "));
// The output is "10 2 8 4 6 5 7 3 9 1". 


STL 源码剖析 算法 stl_algo.h -- partition,布布扣,bubuko.com

STL 源码剖析 算法 stl_algo.h -- partition

标签:style   blog   http   color   os   2014   

原文地址:http://blog.csdn.net/zhengsenlie/article/details/37932305

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!