unordered_multimap :: size()是C++标准模板库中的内置函数,该函数返回无序映射中元素的数量。
语法:
unordered_multimap_name.size()
返回值:返回无序映射中存在的元素的编号。
时间复杂度:
Constant i.e. O(1).
程序1:
// C++ program to demonstrate
// unordered_map size() method
#include
#include
using namespace std;
int main()
{
unordered_map
n{ { 'A', 'G' },
{ 'B', 'E' },
{ 'C', 'E' },
{ 'D', 'K' },
{ 'E', 'S' } };
cout << "size of map = "
<< n.size() << endl;
return 0;
}
输出:
size of map = 5
程式2:
// C++ program to demonstrate
// unordered_map size() method
#include
#include
#include
using namespace std;
int main()
{
unordered_map ra;
cout << "Initial size of map = "
<< ra.size() << endl;
ra = {
{ "Geeks", 1.556 },
{ "For", 2.567 },
{ "Geeks", 3.345 },
{ "GeeksForGeeks", 4.789 },
{ "GFG", 5.998 }
};
cout << "size of map = "
<< ra.size() << endl;
return 0;
}
输出:
Initial size of map = 0
size of map = 4
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。