এই টিউটোরিয়ালে, আমরা C++ STL-এ multiset upper_bound() বোঝার জন্য একটি প্রোগ্রাম নিয়ে আলোচনা করব।
ফাংশন upper_bound() পয়েন্টারটিকে একটি উপাদানে ফেরত দেয় যা একটি প্যারামিটার হিসাবে প্রদত্ত একটির চেয়ে বড়, অন্যথায় এটি কন্টেইনারের শেষ উপাদানটিতে পয়েন্টার ফিরিয়ে দেয়৷
উদাহরণ
#include <bits/stdc++.h>
using namespace std;
int main(){
multiset<int> s;
s.insert(1);
s.insert(3);
s.insert(3);
s.insert(5);
s.insert(4);
cout << "The multiset elements are: ";
for (auto it = s.begin(); it != s.end(); it++)
cout << *it << " ";
auto it = s.upper_bound(3);
cout << "\nThe upper bound of key 3 is ";
cout << (*it) << endl;
it = s.upper_bound(2);
cout << "The upper bound of key 2 is ";
cout << (*it) << endl;
it = s.upper_bound(10);
cout << "The upper bound of key 10 is ";
cout << (*it) << endl;
return 0;
} আউটপুট
The multiset elements are: 1 3 3 4 5 The upper bound of key 3 is 4 The upper bound of key 2 is 3 The upper bound of key 10 is 5