Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C++

แผนที่ equal_range() ใน C ++ STL


ในบทช่วยสอนนี้ เราจะพูดถึงโปรแกรมเพื่อทำความเข้าใจ map equal_range ใน C++ STL

ฟังก์ชันนี้จะคืนค่าตัววนซ้ำคู่หนึ่งที่จำกัดช่วงของคอนเทนเนอร์ซึ่งมีคีย์เทียบเท่ากับพารามิเตอร์ที่กำหนด

ตัวอย่าง

#include <bits/stdc++.h>
using namespace std;
int main() {
   //initializing container
   map<int, int> mp;
   mp.insert({ 4, 30 });
   mp.insert({ 1, 40 });
   mp.insert({ 6, 60 });
   pair<map<int, int>::iterator,
      map<int, int>::iterator>
      it;
   it = mp.equal_range(1);
   cout << "The lower bound is " << it.first->first<< ":" << it.first->second;
   cout << "\nThe upper bound is "<< it.second->first<< ":" << it.second->second;
   return 0;
}

ผลลัพธ์

The lower bound is 1:40
The upper bound is 4:30