Udostępnij za pośrednictwem


partial_sort

Rozmieszcza określonej liczby mniejsze elementy, w zakresie, w kolejności nondescending lub kryterium sortowania określony przez predykatu dwuelementowego.

template<class RandomAccessIterator>
   void partial_sort(
      RandomAccessIterator first, 
      RandomAccessIterator sortEnd,
      RandomAccessIterator last
   );
template<class RandomAccessIterator, class BinaryPredicate>
   void partial_sort(
      RandomAccessIterator first, 
      RandomAccessIterator sortEnd,
      RandomAccessIterator last
      BinaryPredicate comp
   );

Parametry

  • first
    Random access iteratora adresowania pozycja pierwszego elementu w zakresie sortowania.

  • sortEnd
    Random access iteratora adresowania jedną pozycję w przeszłości końcowy element Podzakres sortowania.

  • last
    Random access iteratora adresowania położenie jednego elementu końcowego w przeszłości w zakresie częściowo sortowania.

  • comp
    Obiektu predykatu funkcję zdefiniowaną przez użytkownika, który definiuje kryterium Porównanie mają być spełnione przez kolejne elementy w kolejności.Predykatu dwuelementowego ma dwa argumenty i zwraca true po stwierdzeniu i false , gdy nie są spełnione.

Uwagi

Zakres odwołania musi być ważny; wszystkie wskaźniki muszą być dereferenceable i w ramach sekwencji ostatniej pozycji jest dostępny z pierwszym przez incrementation.

Elementy są równoważne, ale niekoniecznie równości, jeśli nie jest mniejsza niż inne.Sortowania algorytm nie jest stabilna i nie gwarantuje, że względna kolejność elementów równoważnych zostaną zachowane.Algorytm stable_sort zachowania oryginalnego zamówienia.

The average partial sort complexity is O((last-first) log (sortEnd-first)).

Przykład

// alg_partial_sort.cpp
// compile with: /EHsc
#include <vector>
#include <algorithm>
#include <functional>      // For greater<int>( )
#include <iostream>

// Return whether first element is greater than the second
bool UDgreater ( int elem1, int elem2 )
{
   return elem1 > elem2;
}

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

   int i;
   for ( i = 0 ; i <= 5 ; i++ )
   {
      v1.push_back( 2 * i );
   }

   int ii;
   for ( ii = 0 ; ii <= 5 ; ii++ )
   {
      v1.push_back( 2 * ii +1 );
   }

   cout << "Original vector:\n v1 = ( " ;
   for ( Iter1 = v1.begin( ) ; Iter1 != v1.end( ) ; Iter1++ )
      cout << *Iter1 << " ";
   cout << ")" << endl;

   partial_sort(v1.begin( ), v1.begin( ) + 6, v1.end( ) );
   cout << "Partially sorted vector:\n v1 = ( " ;
   for ( Iter1 = v1.begin( ) ; Iter1 != v1.end( ) ; Iter1++ )
      cout << *Iter1 << " ";
   cout << ")" << endl;

   // To partially sort in descending order, specify binary predicate
   partial_sort(v1.begin( ), v1.begin( ) + 4, v1.end( ), greater<int>( ) );
   cout << "Partially resorted (greater) vector:\n v1 = ( " ;
   for ( Iter1 = v1.begin( ) ; Iter1 != v1.end( ) ; Iter1++ )
      cout << *Iter1 << " ";
   cout << ")" << endl;

   // A user-defined (UD) binary predicate can also be used
   partial_sort(v1.begin( ), v1.begin( ) + 8, v1.end( ), 
 UDgreater );
   cout << "Partially resorted (UDgreater) vector:\n v1 = ( " ;
   for ( Iter1 = v1.begin( ) ; Iter1 != v1.end( ) ; Iter1++ )
      cout << *Iter1 << " ";
   cout << ")" << endl;
}
  

Wymagania

Nagłówek: <algorithm>

Obszar nazw: std

Zobacz też

Informacje

partial_sort (STL Samples)

Predicate Version of partial_sort

Standardowa biblioteka szablonu