當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C++ multiset value_comp()用法及代碼示例


std::multiset::value_comp是C++ STL中的內置函數,它返回容器使用的比較對象的副本。默認情況下,這是一個less對象,其返回值與運算符‘

用法:

value_compare multiset_name.value_comp() 

參數:該函數不接受任何參數。


返回值:該函數返回容器使用的比較對象的副本。

以下示例說明了上述方法:

示例1:

// C++ program to illustrate the 
// multiset::value_comp() function 
  
#include <bits/stdc++.h> 
using namespace std; 
  
int main() 
{ 
  
    // Creating a multiset named m; 
    multiset<int> m; 
  
    multiset<int>::value_compare 
        comp 
        = m.value_comp(); 
  
    // Inserting elements into multiset 
    m.insert(10); 
    m.insert(20); 
    m.insert(30); 
    m.insert(40); 
  
    cout << "Multiset has the elements\n"; 
  
    // Store key value of last element 
    int highest = *m.rbegin(); 
  
    // initializing the iterator 
    multiset<int>::iterator it = m.begin(); 
  
    // printing elements of all multiset 
    do { 
  
        cout << " " << *it; 
  
    } while (comp(*it++, highest)); 
  
    return 0; 
}
輸出:
Multiset has the elements
 10 20 30 40

示例2:

// C++ program to illustrate the 
// multiset::value_comp() function 
  
#include <bits/stdc++.h> 
using namespace std; 
  
int main() 
{ 
  
    // Creating a multiset named m; 
    multiset<int> m; 
  
    multiset<int>::value_compare 
        comp 
        = m.value_comp(); 
  
    // Inserting elements into multiset 
    m.insert(100); 
    m.insert(200); 
    m.insert(300); 
    m.insert(400); 
  
    cout << "Multiset has the elements\n"; 
  
    // Store key value of last element 
    int highest = *m.rbegin(); 
  
    // initializing the iterator 
    multiset<int>::iterator it = m.begin(); 
  
    // printing elements of all multiset 
    do { 
  
        cout << " " << *it; 
  
    } while (comp(*it++, highest)); 
  
    return 0; 
}
輸出:
Multiset has the elements
 100 200 300 400


相關用法


注:本文由純淨天空篩選整理自ankit15697大神的英文原創作品 multiset value_comp() method in C++ STL。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。