C++ Deque cend()函数
C++ Deque cend()函数返回一个指向最后一个元素后面的位置的常量迭代器。迭代器可以递增或递减,但不能修改deque的内容。
如果容器为空,则cend()函数返回与cbegin()函数相同的值。
语法
const_iterator cend();
参数
它不包含任何参数。
返回值
它返回一个指向deque中最后一个元素的过去迭代器。
示例1
让我们看一个简单的示例,其中deque包含字符值。
#include <iostream>
#include<deque>
using namespace std;
int main()
{
deque<char> ch={'j','a','v','a','T','p','o','i','n','t'};
deque<char>::const_iterator itr=ch.cbegin();
while(itr!=ch.cend())
{
cout<<*itr;
cout<<" ";
++itr;
}
return 0;
}
输出:
j a v a T p o i n t
在这个示例中,cend()函数被用来迭代整个deque容器,而while循环执行直到’itr’等于ch.cend()为止。
示例2
让我们看一个简单的示例,当deque包含整数值时。
#include <iostream>
#include<deque>
using namespace std;
int main()
{
deque<int> deq={100,200,300,400,500};
deque<int>::const_iterator itr=deq.cbegin();
while(itr!=deq.cend())
{
cout<<*itr;
cout<<" ";
++itr;
}
return 0;
}
输出:
100 200 300 400 500
在这个示例中,使用cend()函数来迭代整个deque容器,而while循环执行直到’itr’等于ch.cend()为止。