map::find()是C++ STL中的內置函數,該函數返回一個迭代器或常量迭代器,該迭代器或常量迭代器引用鍵在映射中的位置。如果鍵不存在於Map容器中,則它返回引用map.end()的迭代器或常量迭代器。
用法:
iterator map_name.find(key) or constant iterator map_name.find(key)
參數:該函數接受一個強製性參數鍵,該鍵指定要在Map容器中搜索的鍵。
返回值:該函數返回一個迭代器或常量迭代器,該迭代器或常量迭代器引用鍵在映射中的位置。如果映射容器中不存在該鍵,則它返回引用map.end()的迭代器或常量迭代器。
下麵是上述函數的說明:
// C++ program for illustration
// of map::find() function
#include <bits/stdc++.h>
using namespace std;
int main()
{
// initialize container
multimap<int, int> mp;
// insert elements in random order
mp.insert({ 2, 30 });
mp.insert({ 1, 40 });
mp.insert({ 3, 20 });
mp.insert({ 4, 50 });
cout << "The elements from position 3 in map are : \n";
cout << "KEY\tELEMENT\n";
// find() function finds the position at which 3 is
for (auto itr = mp.find(3); itr != mp.end(); itr++)
cout << itr->first
<< '\t' << itr->second << '\n';
return 0;
}
輸出:
The elements from position 3 in map are : KEY ELEMENT 3 20 4 50
相關用法
- C++ set find()用法及代碼示例
- C++ unordered_set find()用法及代碼示例
- C++ multiset find()用法及代碼示例
- C++ unordered_multiset find()用法及代碼示例
- C++ unordered_multimap find()用法及代碼示例
- C++ std::find用法及代碼示例
- C++ multimap find()用法及代碼示例
- C++ unordered_map find用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 map find() function in C++ STL。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。