C++stllist大小操作

C++stllist大小操作

功能描述:

对list容器的大小进行操作

函数原型:

size();       //返回容器中元素的个数
empty();      //判断容器是否为空
resize(num);  //重新指定容器的长度为num,若容器变长,则以默认填充新位置
            //如果容器变短,则末尾超出容器长度的元素被删除。
resize(num, elem);   //重新指定容器的长度为num,若容器变长,则以elem填充新位置
           //如果容器变短,则末尾超出容器长度的元素被删除。

代码示例:

#include<iostream>
#include<list>
using namespace std;
void printList(const list<int>&L)
{
    
    
       for (list<int>::const_iterator it = L.begin(); it != L.end(); it++)
       {
    
    
              cout << *it << " ";
       }
       cout << endl;
}
//list容器大小操作
void test01()
{
    
    
       list<int>L1;
       L1.push_back(10);
       L1.push_back(20);
       L1.push_back(30);
       L1.push_back(40);
       printList(L1);
       //判断容器是否为空
       if (L1.empty())
       {
    
    
              cout << "L1为空" << endl;
       }
       else
       {
    
    
              cout << "L1不为空" << endl;
              cout << "L1的元素个数为:" << L1.size() << endl;
       }
       //重新指定大小
       L1.resize(10,1000);
       printList(L1);
       L1.resize(2);
       printList(L1);
}
int main()
{
    
    
       test01();
       return 0;
}

总结:
*
判断是否为空—empy
*
返回元素个数—size
*
重新制定个数—resize

猜你喜欢

转载自blog.csdn.net/gyqailxj/article/details/114374708