list :: end()是C++ STL中的内置函数,用于使迭代器经过最后一个元素。过去最后一个元素意味着end()函数返回的迭代器将迭代器返回到列表容器中最后一个元素之后的元素。它不能用于修改元素或列表容器。
该函数基本上用于设置范围以及list :: begin()函数。
句法:
list_name.end()
参数:该函数不接受任何参数,它只是返回一个迭代器以超过最后一个元素。
返回值:该函数将迭代器返回到列表的最后一个元素之后的元素。
下面的程序说明了list :: end()函数。
// CPP program to illustrate the
// list::end() function
#include
using namespace std;
int main()
{
// Creating a list
list demoList;
// Add elements to the List
demoList.push_back(10);
demoList.push_back(20);
demoList.push_back(30);
demoList.push_back(40);
// using end() to get iterator
// to past the last element
list::iterator it = demoList.end();
// This will not print the last element
cout << "Returned iterator points to : " << *it << endl;
// Using end() with begin() as a range to
// print all of the list elements
for (auto itr = demoList.begin();
itr != demoList.end(); itr++) {
cout << *itr << " ";
}
return 0;
}
输出:
Returned iterator points to : 4
10 20 30 40
注意:此函数以恒定的时间复杂度工作。
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。