共用方式為


stable_partition

分類在範圍中之項目的兩個互斥集,而這些項目符合不符合其那些之前的一元的述詞,保留相等項目的相對順序。

template<class BidirectionalIterator, class Predicate> 
   BidirectionalIterator stable_partition( 
      BidirectionalIterator _First,  
      BidirectionalIterator _Last, 
      Predicate _Pred 
   );

參數

  • _First
    解決雙向 Iterator 的第一個項目位置範圍分割。

  • _Last
    解決雙向的 Iterator 將最後一個項目的位置會在範圍分割。

  • _Pred
    使用者定義的述詞函式物件定義要符合的條件,如果要將其項目分類。 述詞會接受單一引數並傳回 truefalse

傳回值

解決雙向 Iterator 的第一個項目位置範圍不滿足述詞條件。

備註

參考的範圍必須是有效的;所有指標必須 dereferenceable,並在序列中最後一個位置從開始取用的增量。

項目 ab 是相等的,當中,但是不一定等於,則為,如果兩 PR (a, *b)*是錯誤和 PR ( ab ),如果為 false,其中 PR 為參數指定的述詞。 stable_ partition 演算法是穩定的並確定對等項目相對順序儲存。 演算法 partition 不一定會儲存原始順序。

範例

// alg_stable_partition.cpp
// compile with: /EHsc
#include <vector>
#include <algorithm>
#include <iostream>

bool greater5 ( int value ) {
   return value >5;
}

int main( ) {
   using namespace std;
   vector <int> v1, v2;
   vector <int>::iterator Iter1, Iter2, result;

   int i;
   for ( i = 0 ; i <= 10 ; i++ )
      v1.push_back( i );

   int ii;
   for ( ii = 0 ; ii <= 4 ; ii++ )
      v1.push_back( 5 );

   random_shuffle(v1.begin( ), v1.end( ) );

   cout << "Vector v1 is ( " ;
   for ( Iter1 = v1.begin( ) ; Iter1 != v1.end( ) ; Iter1++ )
      cout << *Iter1 << " ";
   cout << ")." << endl;

   // Partition the range with predicate greater10
   result = stable_partition (v1.begin( ), v1.end( ), greater5 );
   cout << "The partitioned set of elements in v1 is:\n ( " ;
   for ( Iter1 = v1.begin( ) ; Iter1 != v1.end( ) ; Iter1++ )
      cout << *Iter1 << " ";
   cout << ")." << endl;

   cout << "The first element in v1 to fail to satisfy the"
        << "\n predicate greater5 is: " << *result << "." << endl;
}

範例輸出

Vector v1 is ( 5 1 9 2 0 5 7 3 4 5 8 5 5 5 10 6 ).
The partitioned set of elements in v1 is:
 ( 9 7 8 10 6 5 1 2 0 5 3 4 5 5 5 5 ).
The first element in v1 to fail to satisfy the
 predicate greater5 is: 5.

需求

標頭:<algorithm>

命名空間: std

請參閱

參考

標準樣板程式庫