📜  C++ STL-Multiset.size()函数

📅  最后修改于: 2020-10-19 07:49:47             🧑  作者: Mango

C++ STL Multiset.大小()

C++ Multiset size()函数用于查找多集容器中存在的元素数。

句法

成员类型size_type是无符号整数类型。

size_type size() const;               // until C++ 11
size_type size() const noexcept;    //since C++ 11

参数

没有

返回值

size()函数返回多重集中存在的元素数。

复杂度

不变。

迭代器有效性

没有变化。

数据竞争

容器被访问。

同时访问多集容器的元素是安全的。

异常安全

此函数永远不会引发异常。

例子1

让我们看一个简单的例子来计算多集的大小:

#include 
#include 

using namespace std;
 
int main()
{ 
    multiset num {'a', 'b', 'c', 'd', 'a'}; 
    cout << "num multiset contains " << num.size() << " elements.\n";
    return 0;
}

输出:

num multiset contains 5 elements.

在上面的示例中,多集num包含5个元素。因此,size()返回5个元素。

例子2

让我们看一个简单的示例,在添加元素之后计算多重集的初始大小和多重集的大小:

#include 
#include 

using namespace std;

int main(void) {

   multiset m;

   cout << "Initial size of multiset = " << m.size() << endl;

   m = {1,2,3,4,5,4};

     cout << "Size of multiset after inserting elements = " << m.size() << endl;

   return 0;
}

输出:

Initial size of multiset = 0
Size of multiset after inserting elements = 6

在上面的示例中,第一个多重集为空,因此,size()函数将返回0,在插入6个元素之后将返回6。

例子3

让我们看一个简单的例子:

#include 
#include 

using namespace std;

int main ()
{
  multiset mymultiset = {100,200,300,400,200};

  while (mymultiset.size())
  {
    cout << *mymultiset.begin()<< '\n';
    mymultiset.erase(mymultiset.begin());
  }

  return 0;
}

输出:

100
200
200
300
400

在上面的示例中,它仅在while循环中使用size()函数,并打印multiset的元素,直到multiset的大小为止。

例子4

让我们看一个简单的例子:

#include 
#include 
#include 

using namespace std;

int main() {

  typedef multiset marksMultiset;
   
   int number;
   marksMultiset marks;

   cout<<"Enter three sets of marks: \n";
   
   for(int i =0; i<3; i++)
   {
       cin>> number;    // Get value
       marks.insert(number);   // Put them in multiset
   }
   
      cout<<"\nSize of marks multiset is:"<< marks.size();
      cout<<"\nList of Marks: \n";
      marksMultiset::iterator p;
      for(p = marks.begin(); p!=marks.end(); p++)
      {
          cout<<(*p)<<" \n ";
      }
    
   return 0;
}

输出:

Enter three sets of marks: 
340
235
340

Size of marks multiset is: 3
List of Marks: 
235 
340 
340

在上面的示例中,程序首先以交互方式创建标记多集。然后,它将显示标记多集的总大小以及多集中所有可用元素。