当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ list empty()用法及代码示例


list::empty(是C++ STL中的内置函数,用于检查特定列表容器是否为空。该函数不会修改列表,它只是检查列表是否为空,即列表的大小是否为零。

用法:

list_name.empty() 

参数:该函数不接受任何参数,仅检查列表容器是否为空。


返回值:该函数的返回类型为布尔值。如果列表容器的大小为零,则返回True,否则返回False。

以下示例程序旨在说明list::empty()函数。

// CPP program to illustrate the 
// list::empty() function 
#include <bits/stdc++.h> 
using namespace std; 
  
int main() 
{ 
    // Creating a list 
    list<int> demoList; 
  
    // check if list is empty 
    if (demoList.empty()) 
        cout << "Empty List\n"; 
    else
        cout << "Not Empty\n"; 
  
    // Add elements to the List 
    demoList.push_back(10); 
    demoList.push_back(20); 
    demoList.push_back(30); 
    demoList.push_back(40); 
  
    // check again if list is empty 
    if (demoList.empty()) 
        cout << "Empty List\n"; 
    else
        cout << "Not Empty\n"; 
  
    return 0; 
}
输出:
Empty List
Not Empty

注意:此函数以恒定的时间复杂度工作。



相关用法


注:本文由纯净天空筛选整理自barykrg大神的英文原创作品 list empty() function in C++ STL。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。