STL中的转发列表实现单链列表。从C++ 11引入的前向列表在插入,删除和移动操作(如排序)方面比其他容器有用,并且允许时间常数插入和删除元素。它与列表的不同之处在于前向列表会跟踪对象的位置只有list的下一个元素同时跟踪下一个和上一个元素。
forward_list :: clear()
clear()函数用于删除转发列表容器的所有元素,从而使其大小为0。
句法 :
forwardlistname.clear()
Parameters :
No parameters are passed.
Result :
All the elements of the forward list are
removed ( or destroyed )
例子:
Input : flist{1, 2, 3, 4, 5};
flist.clear();
Output : flist{}
Input : flist{};
flist.clear();
Output : flist{}
错误和异常
1.它没有异常抛出保证。
2.传递参数时显示错误。
// CPP program to illustrate
// Implementation of clear() function
#include
#include
using namespace std;
int main()
{
forward_list myflist{ 1, 2, 3, 4, 5 };
myflist.clear();
// Forward List becomes empty
// Printing the Forward list
for (auto it = myflist.begin(); it != myflist.end(); ++it)
cout << ' ' << *it;
return 0;
}
输出:
No Output
forward_list :: erase_after()
delete-after()函数用于从指定位置旁边或范围内的容器中删除元素。
句法 :
1. flistname.erase_after(position)
2. flistname.erase_after(startingposition, endingposition)
Parameters :
Position previous of the element to be removed in the form of iterator.
or the range specified using start and end iterator.
Result :
Elements are removed from the next
position of the container.
例子:
Input : flist{1, 2, 3, 4, 5}, iterator= 2
flist.erase_after(iterator);
Output : 1, 2, 3, 5
Input : flist{1, 2, 3, 4, 5, 6, 7, 8}, iterator1= 3, iterator2= 6
flist.erase(iterator1, iterator2);
Output : 1, 2, 3, 8
错误和异常
1.如果该位置有效,则没有异常抛出保证。
2.否则显示未定义的行为。
从特定位置移除元件
// CPP program to illustrate
// Implementation of erase_after() function
#include
#include
using namespace std;
int main()
{
forward_list myflist{ 1, 2, 3, 4, 5 };
forward_list::iterator it;
it = myflist.begin();
myflist.erase_after(it);
// Printing the forward list
for (auto it = myflist.begin(); it != myflist.end(); ++it)
cout << ' ' << *it;
return 0;
}
输出:
1 3 4 5
删除范围内的元素
// CPP program to illustrate
// Implementation of erase_after() function
#include
#include
using namespace std;
int main()
{
forward_list myflist{ 1, 2, 3, 4, 5 };
forward_list::iterator it1, it2;
it1 = myflist.begin();
it2 = myflist.end();
myflist.erase_after(it1, it2);
// Printing the forward list
for (auto it = myflist.begin(); it != myflist.end(); ++it)
cout << ' ' << *it;
return 0;
}
输出:
1
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。