unordered_set :: size()方法是C++ STL中的内置函数,用于返回unordered_set容器中的元素数。
语法:
unordered_set_name.size()
参数:不接受任何参数。
返回值:该函数返回容器中元素的数量。
下面的程序说明了unordered_set :: size()函数:
程序1:
// C++ program to illustrate the
// unordered_set.size() function
#include
#include
using namespace std;
int main()
{
unordered_set arr1 = { 1, 2, 3, 4, 5 };
// prints the size of arr1
cout << "size of arr1:" << arr1.size();
// prints the element
cout << "\nThe elements are: ";
for (auto it = arr1.begin(); it != arr1.end(); it++)
cout << *it << " ";
return 0;
}
输出:
size of arr1:5
The elements are: 5 1 2 3 4
程式2:
// C++ program to illustrate the
// unordered_set::size() function
// when container is empty
#include
#include
using namespace std;
int main()
{
unordered_set arr2 = {};
// prints the size
cout << "Size of arr2 : " << arr2.size();
return 0;
}
输出:
Size of arr2 : 0
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。