双端队列或双端队列是序列容器,两端都有扩展和收缩功能。它们与向量类似,但是在元素的结尾和开始处插入和删除时效率更高。与向量不同,可能无法保证连续的存储分配。
deque :: begin()
begin()函数用于返回指向双端队列容器第一个元素的迭代器。 begin()函数将双向迭代器返回到容器的第一个元素。
句法 :
dequename.begin()
Parameters :
No parameters are passed.
Returns :
This function returns a bidirectional
iterator pointing to the first element.
例子:
Input : mydeque{1, 2, 3, 4, 5};
mydeque.begin();
Output : returns an iterator to the element 1
Input : mydeque{8, 7};
mydeque.begin();
Output : returns an iterator to the element 8
错误和异常
1.它没有异常抛出保证。
2.传递参数时显示错误。
// CPP program to illustrate
// Implementation of begin() function
#include
#include
using namespace std;
int main()
{
// declaration of deque container
deque mydeque{ 1, 2, 3, 4, 5 };
// using begin() to print deque
for (auto it = mydeque.begin(); it != mydeque.end(); ++it)
cout << ' ' << *it;
return 0;
}
输出:
1 2 3 4 5
时间复杂度: O(1)
deque :: end()
end()函数用于返回指向双端队列容器的最后一个元素的迭代器。 end()函数将双向迭代器返回到容器的最后一个元素。
注意:任何容器的最后一个元素都被视为理论上的元素,该值紧挨着该容器中存储的最后一个值。
句法 :
dequename.end()
Parameters :
No parameters are passed.
Returns :
This function returns a bidirectional
iterator pointing to the last element.
例子:
Input : mydeque{1, 2, 3, 4, 5};
mydeque.end();
Output : returns an iterator to the element next to the element 5
Input : mydeque{8, 7};
mydeque.end();
Output : returns an iterator to the element next to the element 7
错误和异常
1.它没有异常抛出保证。
2.传递参数时显示错误。
// CPP program to illustrate
// Implementation of end() function
#include
#include
using namespace std;
int main()
{
// declaration of deque container
deque mydeque{ 1, 2, 3, 4, 5 };
// using end() to print deque
for (auto it = mydeque.begin(); it != mydeque.end(); ++it)
cout << ' ' << *it;
return 0;
}
输出:
1 2 3 4 5
时间复杂度: O(1)
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。