📜  C++ STL-Deque.begin()函数

📅  最后修改于: 2020-10-17 07:15:34             🧑  作者: Mango

C++双端队列begin()

C++ Deque begin()函数返回一个指向deque容器第一个元素的迭代器。如果容器为空,则返回的迭代器将等于end()。

句法

iterator begin(); 

参数

它不包含任何参数。

返回值

它返回一个指向双端队列第一个元素的迭代器。

例子1

让我们看一个简单的例子

#include 
#include
using namespace std;
int main()
{
  deque n={1,2,3};
  deque::iterator itr;
  itr=n.begin();
  cout<<"first element of the deque:"<<*itr;
  return 0;
}

输出:

first element of the deque:1

在此示例中,begin()函数返回第一个元素的迭代器。

例子2

让我们看一个简单的例子

#include 
#include
using namespace std;
int main()
{
  deque ch={'C','+','+'};
  deque::iterator itr;
  itr=ch.begin()+2;
  cout<<*itr;
  return 0;
}

在此示例中,begin()函数递增2。因此,begin()函数返回第三个元素的迭代器。