📜  C++ STL-Set.empty()函数

📅  最后修改于: 2020-10-20 07:53:29             🧑  作者: Mango

C++ STL Set.为空()

C++ empty()函数用于检查set容器是否为空。如果集合容器为空(大小为0),则返回true;否则,返回false。

句法

bool empty() const;               // until C++ 11
bool empty const noexcept;    //since C++ 11

参数

没有

返回值

如果set容器为空(大小为0),则返回true;否则,返回false。

复杂度

不变。

迭代器有效性

没有变化。

数据竞争

容器被访问。

同时访问set的元素是安全的。

异常安全

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

例子1

让我们看一个简单的示例,以检查集合是否包含任何元素:

#include 
#include 
using namespace std;

int main()
{
    set numbers;
    cout << " Initially, numbers.empty(): " << numbers.empty() << "\n";
    numbers = {100, 200, 300};
    cout << "\n After adding elements, numbers.empty(): " << numbers.empty() << "\n";
}

输出:

 Initially, numbers.empty(): 1

 After adding elements, numbers.empty(): 0

在上面的示例中,set的初始大小为0,因此,empty()函数返回1(true),添加元素后返回0(false)。

例子2

让我们看一个简单的示例来检查set是否为空:

#include 
#include 

using namespace std;

int main(void) {

   set s;

   if (s.empty())
      cout << "Set is empty." << endl;

   s = {100};

   if (!s.empty())
      cout << "Set is not empty." << endl;

   return 0;
}

输出:

Set is empty
Set is not empty

在上面的示例中,如果使用condition语句。如果set为空,则在添加元素后将返回set空,将返回set不为空。

例子3

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

#include 
#include 

using namespace std;

int main ()
{
  set myset;

  myset = {100, 200, 300};

  while (!myset.empty())
  {
    cout << *myset.begin()<< '\n';
    myset.erase(*myset.begin());
  }

  return 0;
}

输出:

100
200
300

在上面的示例中,它仅在while循环中使用empty()函数并打印set的元素,直到set不为空。

例子4

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

#include 
#include 
#include 

using namespace std;

int main() {

  typedef set phoneSet;
   
   int number;
   phoneSet phone;
   
   if (phone.empty())
      cout << "Set is empty. Please insert content! \n " << endl;
   
   cout<<"Enter three sets of number: \n";
   
   for(int i =0; i<3; i++)
   {
       cin>> number;    // Get value
       phone.insert(number);   // Put them in set
   }

   if (!phone.empty())
   {
      cout<<"\nList of telephone numbers: \n";
      phoneSet::iterator p;
      for(p = phone.begin(); p!=phone.end(); p++)
      {
          cout<<(*p)<<" \n ";
      }
   }
   return 0;
}

输出:


Set is empty. Please insert content! 
 
Enter three sets of number: 
1111
5555
3333

List of telephone numbers: 
1111 
3333 
5555 

在上面的示例中,该程序首先使用三组数字交互创建电话机,然后检查该电话机是否为空。如果set为空,则显示一条消息,否则,显示set中所有可用的电话号码。