在本文中,我们将讨论C ++中forward_list::begin()和forward_list::end()函数的工作原理,语法和示例。
转发列表是序列容器,允许在序列中的任何位置进行恒定时间的插入和擦除操作。转发列表被实现为单链接列表。通过与到序列中下一个元素的链接的每个元素的关联来保持顺序。
forward_list::begin()是C ++ STL中的内置函数,在头文件中声明。begin()
返回引用了forward_list容器中第一个元素的迭代器。通常,我们使用begin()
和end()
一起给出forward_list容器的范围。
forwardlist_container.begin();
此函数不接受任何参数。
此函数返回指向容器的第一个元素的双向迭代器。
#include <bits/stdc++.h> using namespace std; int main(){ //创建一个转发列表 forward_list<int> forwardList = { 4, 1, 2, 7 }; cout<<"Printing the elements of a forward List\n"; //calling begin() to point to the first element for (auto i = forwardList.begin(); i != forwardList.end(); ++i) cout << ' ' << *i; return 0; }
输出结果
如果我们运行上面的代码,它将生成以下输出
Printing the elements of a forward List 4 1 2 7
forward_list::end()是C ++ STL中的内置函数,在头文件中声明。end()
返回迭代器,该迭代器被引用到forward_list容器中的最后一个元素。通常,我们使用begin()
和end()
一起给出forward_list容器的范围。
forwardlist_container.end();
此函数不接受任何参数。
此函数返回指向容器的第一个元素的双向迭代器。
#include <bits/stdc++.h> using namespace std; int main(){ //创建一个转发列表 forward_list<int> forwardList = { 4, 1, 2, 7 }; cout<<"Printing the elements of a forward List\n"; //calling begin() to point to the first element for (auto i = forwardList.begin(); i != forwardList.end(); ++i) cout << ' ' << *i; return 0; }
输出结果
如果我们运行上面的代码,它将生成以下输出
Printing the elements of a forward List 4 1 2 7