less_equal Struct
Predykatu dwuelementowego sprawdza, czy wartość określonego typu jest mniejsza lub równa wartości innego typu.
template<class Type>
struct less_equal : public binary_function <Type, Type, bool>
{
bool operator()(
const Type& _Left,
const Type& _Right
) const;
};
Parametry
_Left
Lewy operand typu typu w nierówność badane._Right
Prawy operand typu typu w nierówność badane.
Wartość zwracana
trueif _Left <= _Right; falseif _Left > _Right.
Uwagi
Predykatu dwuelementowego less_equal<typu> zapewnia ścisłe słabe zamawiania zestawu wartości elementu typu typu do klas równoważności Jeśli i tylko ten typu spełnia wymagania matematycznych standardowe zamawiane tak.Specjalności dla każdego typu wskaźnika dają razem kolejność elementów w tym wszystkich elementów różnych wartości są uporządkowane względem siebie.
Przykład
// functional_less_equal.cpp
// compile with: /EHsc
#define _CRT_RAND_S
#include <stdlib.h>
#include <vector>
#include <algorithm>
#include <functional>
#include <cstdlib>
#include <iostream>
int main( )
{
using namespace std;
vector <int> v1;
vector <int>::iterator Iter1;
vector <int>::reverse_iterator rIter1;
unsigned int randomNumber;
int i;
for ( i = 0 ; i < 5 ; i++ )
{
if ( rand_s( &randomNumber ) == 0 )
{
// Convert the random number to be between 1 - 50000
// This is done for readability purposes
randomNumber = ( unsigned int) ((double)randomNumber /
(double) UINT_MAX * 50000) + 1;
v1.push_back( randomNumber );
}
}
for ( i = 0 ; i < 3 ; i++ )
{
v1.push_back( 2836 );
}
cout << "Original vector v1 = ( " ;
for ( Iter1 = v1.begin( ) ; Iter1 != v1.end( ) ; Iter1++ )
cout << *Iter1 << " ";
cout << ")" << endl;
// To sort in ascending order,
// use the binary predicate less_equal<int>( )
sort( v1.begin( ), v1.end( ), less_equal<int>( ) );
cout << "Sorted vector v1 = ( " ;
for ( Iter1 = v1.begin( ) ; Iter1 != v1.end( ) ; Iter1++ )
cout << *Iter1 << " ";
cout << ")" << endl;
}
Przykładowe dane wyjściowe
Original vector v1 = ( 31247 37154 48755 15251 6205 2836 2836 2836 )
Sorted vector v1 = ( 2836 2836 2836 6205 15251 31247 37154 48755 )
Wymagania
Nagłówek: <functional>
Obszar nazw: std