當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C++ set empty()用法及代碼示例


C++ empty() 函數用於檢查集合容器是否為空。如果設置的容器為空(大小為 0),則返回 true,否則返回 false。

用法

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

參數

返回值

如果設置的容器為空(大小為 0),則返回 true,否則返回 false。

複雜度

恒定。

迭代器有效性

沒有變化。

數據競爭

容器被訪問。

同時訪問 set 的元素是安全的。

異常安全

此函數從不拋出異常。

例子1

讓我們看一個簡單的例子來檢查一個集合是否包含任何元素:

#include <set>
#include <iostream>
using namespace std;

int main()
{
    set<int> 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

在上例中,集合的初始大小為 0,因此 empty() 函數返回 1(true),添加元素後返回 0(false)。

例子2

讓我們看一個簡單的例子來檢查 set 是否為空:

#include <iostream>
#include <set>

using namespace std;

int main(void) {

   set<char> 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

在上麵的例子中,使用了 if 條件語句。如果set為空,添加元素後返回set為空,返回set不為空。

例子3

讓我們看一個簡單的例子:

#include <iostream>
#include <set>

using namespace std;

int main ()
{
  set<int> myset;

  myset = {100, 200, 300};

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

  return 0;
}

輸出:

100
200
300

在上麵的例子中,它隻是在 while 循環中使用 empty() 函數並打印集合的元素,直到集合不為空。

示例 4

讓我們看一個簡單的例子:

#include <iostream>
#include <set>
#include <string>

using namespace std;

int main() {

  typedef set<int> 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 

在上麵的例子中,程序首先用三組號碼交互創建電話機,然後檢查電話機是否為空。如果集合為空,則顯示一條消息,否則顯示集合中所有可用的電話號碼。






相關用法


注:本文由純淨天空篩選整理自 C++ set empty()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。