该列表没有随机访问运算符[]来按索引访问元素,因为std :: list在内部将元素存储在一个双向链接的列表中。因此,要访问任何位于第K个位置的元素,其思想是从开始到第K个元素一个接一个地迭代。而不是迭代K次。为此,使用STL std :: advance()函数在线性时间内找到它。
句法:
advance(InputIterator& it, Distance N)
参数:该函数接受两个参数,即要遍历列表的迭代器和必须将其移动到的位置。对于随机访问和双向迭代器,该位置可以为负。
返回类型:该函数没有返回类型。
以下是上述方法的C++实现:
C++
// C++ program to access Kth element
// of the list using advanced
#include
using namespace std;
// Driver Code
int main()
{
// Create list with initial value 100
list li(5, 100);
// Insert 20 and 30 to the list
li.push_back(20);
li.push_back(30);
// Elements of list are
// 100, 100, 100, 100, 100, 20, 30
// Initialize iterator to list
list::iterator it = li.begin();
// Move the iterator by 5 elements
advance(it, 5);
// Print the element at the it
cout << *it;
return 0;
}
输出:
20
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。