STL中的转发列表实现单链列表。从C++ 11引入的前向列表比其他容器有用,可以进行插入,移除和移动操作(例如排序),并允许时间常数地插入和移除元素。 list仅保留下一个元素的位置,同时跟踪下一个和上一个元素。
forward_list ::运算符=
该运算符用于通过替换现有内容将新内容分配给容器。
它还根据新内容修改大小。
句法 :
forwardlistname1 = (forwardlistname2)
Parameters :
Another container of the same type.
Result :
Assign the contents of the container passed as the
parameter to the container written on left side of the operator.
例子:
Input : myflist1 = 1, 2, 3
myflist2 = 3, 2, 1, 4
myflist1 = myflist2;
Output : myflist1 = 3, 2, 1, 4
Input : myflist1 = 2, 6, 1, 5
myflist2 = 3, 2
myflist1 = myflist2;
Output : myflist1 = 3, 2
错误和异常
1.如果容器属于不同类型,则会引发错误。
2.否则,它有一个基本的无异常抛出保证。
// CPP program to illustrate
// Implementation of = operator
#include
#include
using namespace std;
int main()
{
forward_list myflist1{ 1, 2, 3 };
forward_list myflist2{ 3, 2, 1, 4 };
myflist1 = myflist2;
cout << "myflist1 = ";
for (auto it = myflist1.begin(); it != myflist1.end(); ++it)
cout << ' ' << *it;
return 0;
}
输出:
myflist1 = 3 2 1 4
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。