向量称为动态数组,可以在插入或删除元素时自动更改其大小。此存储由容器维护。
向量:: cbegin()
该函数返回一个用于迭代容器的迭代器。
- 迭代器指向向量的开头。
- 迭代器无法修改向量的内容。
句法:
vectorname.cbegin()
Parameters:
There is no parameter
Return value:
Constant random access iterator points to the beginning of the vector.
Exception:
No exception
下面的程序演示了该函数的工作
// CPP program to illustrate
// use of cbegin()
#include
#include
#include
using namespace std;
int main()
{
vector vec;
// 5 string are inserted
vec.push_back("first");
vec.push_back("second");
vec.push_back("third");
vec.push_back("fourth");
vec.push_back("fifth");
// displaying the contents
cout << "Contents of the vector:" << endl;
for (auto itr = vec.cbegin();
itr != vec.end();
++itr)
cout << *itr << endl;
return 0;
}
输出:
Contents of the vector:
first
second
third
fourth
fifth
向量:: cend()
该函数返回一个用于迭代容器的迭代器。
- 迭代器指向向量的past-the-end元素。
- 迭代器无法修改向量的内容。
句法:
vectorname.cend()
Parameters:
There is no parameter
Return value:
Constant random access iterator points to past-the-end element of the vector.
Exception:
No exception
下面的程序演示了该函数的工作
// CPP programto illustrate
// functioning of cend()
#include
#include
#include
using namespace std;
int main()
{
vector vec;
// 5 string are inserted
vec.push_back("first");
vec.push_back("second");
vec.push_back("third");
vec.push_back("fourth");
vec.push_back("fifth");
// displaying the contents
cout << "Contents of the vector:" << endl;
for (auto itr = vec.cend() - 1;
itr >= vec.begin();
--itr)
cout << *itr << endl;
return 0;
}
输出:
Contents of the vector:
fifth
fourth
third
second
first
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。