📜  C++中的std :: greater_equal与示例

📅  最后修改于: 2021-05-30 10:35:38             🧑  作者: Mango

std :: greater_equal功能类的成员()。它用于生成类似于运算符(≥)的比较结果。此函数在运算符(≥)的优点是,它使用严格总为了产生的结果,而不是其使用偏序运算符(≥)。根据条件返回布尔值。它可用于比较整数,字符或字符串等。

头文件:

#include 

模板类别:

template  struct greater_equal {

  // Declaration of the
  // greater equal operation 
  bool operator() (const T& x, const T& y) 
       const 
  {
      return x>=y;
  }

  // Type of first parameter
  typedef T first_argument_type;

  // Type of second parameter
  typedef T second_argument_type;

  // The result is returned
  // as bool type
  typedef bool result_type;
};

参数:此函数接受参数T的类型作为参数,以供功能调用进行比较。

返回类型:根据条件返回布尔值(让a和b为2个元素):

  • 正确:如果a大于等于b。
  • False:如果a小于b。

下面是C++中std :: greater_equal的图示:

程序1:

// C++ program to illustrate greater_equal
  
#include 
#include 
#include 
using namespace std;
  
// Function to print the array arr[]
void printArray(int arr[], int N)
{
  
    for (int i = 0; i < N; i++) {
        cout << arr[i] << ' ';
    }
}
  
// Driver Code
int main()
{
    int arr[] = { 1, 5, 8, 9, 6,
                  7, 3, 4, 2, 0 };
  
    int N = sizeof(arr) / sizeof(arr[0]);
  
    // Sort the array in decreasing order
    sort(arr, arr + N, greater_equal());
  
    // Print sorted array
    printArray(arr, N);
    return 0;
}
输出:
9 8 7 6 5 4 3 2 1 0

程式2:

// C++ program to illustrate greater_equal
  
#include 
#include 
#include 
using namespace std;
  
// Driver Code
int main()
{
  
    int arr[] = { 30, 40, -50, 60, -70,
                  10, 20, -80, 90, 100 };
    int N = sizeof(arr) / sizeof(arr[0]);
  
    // Print the number of elements less
    // than 0
    cout << count_if(
        arr, arr + N,
        bind2nd(greater_equal(),
                0));
    return 0;
}
输出:
7

参考: http : //www.cplusplus.com/reference/functional/greater_equal/

要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程”