unordered_multiset的size()方法用于计算调用它的unordered_set的元素数。它获取容器中元素的数量并计算元素的数量。
句法:
size_type size() const;
其中size_type是无符号整数类型。
返回值:该函数返回受控序列的长度,或者简而言之,它返回容器中元素的数量。
下面的程序说明了unordered_multiset size()函数:-
例子 :
#include
#include
using namespace std;
int main()
{
// Define the unordered_set
unordered_multiset numbers{ 1, 2, 3, 4, 5, 6 };
// Calculate and print
// the size of the unordered_multiset
cout << "The container has "
<< numbers.size()
<< " elements in it";
}
输出:
The container has 6 elements in it
复杂度:
执行操作需要花费恒定(O(1))的时间复杂度。
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。