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


C++ set lower_bound()用法及代碼示例


set::lower_bound()是C++ STL中的內置函數,該函數返回指向容器中元素的迭代器,該迭代器等效於在參數中傳遞的k。如果set容器中不存在k,則該函數返回一個迭代器,該迭代器指向剛好大於k的下一個元素。如果傳遞給參數的鍵超過了容器中的最大值,則返回的迭代器將指向設置容器中的最後一個元素。

用法:

set_name.lower_bound(key)

參數:該函數接受單個強製性參數鍵,該鍵指定要返回其lower_bound的元素。


返回值:該函數返回一個指向容器中元素的迭代器,該迭代器等效於在參數中傳遞的k。如果set容器中不存在k,則該函數返回一個迭代器,該迭代器指向剛好大於k的下一個元素。如果參數中傳遞的鍵超過了容器中的最大值,則返回的迭代器等效於s.end()(特殊的迭代器指向最後一個元素)。

以下示例程序旨在說明上述函數:

// CPP program to demonstrate the 
// set::lower_bound() function 
#include <bits/stdc++.h> 
using namespace std; 
int main() 
{ 
  
    set<int> s; 
  
    // Function to insert elements 
    // in the set container 
    s.insert(1); 
    s.insert(4); 
    s.insert(2); 
    s.insert(5); 
    s.insert(6); 
  
    cout << "The set elements are: "; 
    for (auto it = s.begin(); it != s.end(); it++) 
        cout << *it << " "; 
  
    // when 2 is present 
    auto it = s.lower_bound(2); 
    cout << "\nThe lower bound of key 2 is "; 
    cout << (*it) << endl; 
  
    // when 3 is not present 
    // points to next greater after 3 
    it = s.lower_bound(3); 
    cout << "The lower bound of key 3 is "; 
    cout << (*it) << endl; 
  
    // when 8 exceeds the max element in set 
    it = s.lower_bound(8); 
    cout << "The lower bound of key 8 is "; 
    cout << (*it) << endl; 
  
    return 0; 
}
輸出:
The set elements are: 1 2 4 5 6 
The lower bound of key 2 is 2
The lower bound of key 3 is 4
The lower bound of key 8 is 5


相關用法


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