大小操作
函数原型:
代码语言:javascript复制#include<iostream>
using namespace std;
#include<deque>
//deque的大小操作
void p(const deque<int>& d)
{
for (deque<int>::const_iterator it = d.begin(); it != d.end(); it )
{
//*it = 100; 加了const关键字后,就无法对数据进行修改
cout << *it << " ";
}
cout << endl;
//判断容器是否为空
if (d.empty())
{
cout << "容器为空" << endl;
}
else {
cout << "容器不为空" << endl;
//返回容器中元素个数
cout << "容器中元素个数:" << d.size() << endl;
}
}
void realApply()
{
deque<int>d1;
d1.push_back(5);
d1.push_back(2);
d1.push_back(0);
p(d1);
//重新指定长度,大于原长,会用默认值填充新位置
d1.resize(10);
p(d1);
//重新指定长度,小于原长,就会将超出部分的元素删除
d1.resize(3);
p(d1);
//重新指定长度,大于原长,就用elem来填充新位置
d1.resize(10, 1);
p(d1);
}
int main()
{
realApply();
system("pause");
return 0;
}