Computer >> 컴퓨터 >  >> 프로그램 작성 >> C++

예제가 있는 C++ STL의 다중 집합 lower_bound()

<시간/>

이 튜토리얼에서는 C++ STL에서 multiset lower_bound()를 이해하는 프로그램에 대해 논의할 것입니다.

lower_bound() 함수는 제공된 매개변수와 동일한 컨테이너에서 요소의 첫 번째 존재를 반환하고, 그렇지 않으면 그보다 바로 큰 요소를 반환합니다.

예시

#include <bits/stdc++.h>
using namespace std;
int main(){
   multiset<int> s;
   s.insert(1);
   s.insert(2);
   s.insert(2);
   s.insert(1);
   s.insert(4);
   cout << "The multiset elements are: ";
   for (auto it = s.begin(); it != s.end(); it++)
      cout << *it << " ";
   auto it = s.lower_bound(2);
   cout << "\nThe lower bound of key 2 is ";
   cout << (*it) << endl;
   it = s.lower_bound(3);
   cout << "The lower bound of key 3 is ";
   cout << (*it) << endl;
   it = s.lower_bound(7);
   cout << "The lower bound of key 7 is ";
   cout << (*it) << endl;
   return 0;
}

출력

The multiset elements are: 1 1 2 2 4
The lower bound of key 2 is 2
The lower bound of key 3 is 4
The lower bound of key 7 is 5