STL中的转发列表实现单链列表。从C++ 11引入的前向列表比其他容器有用,可以进行插入,删除和移动操作(如排序),并允许时间常数地插入和删除元素。 list仅保留下一个元素的位置,同时跟踪下一个和上一个元素。
forward_list :: emplace_front()
此函数用于将新元素插入到转发列表容器中,并将新元素添加到转发列表的开头。
句法 :
forwardlistname.emplace_front(value)
Parameters :
The element to be inserted into the forward list
is passed as the parameter.
Result :
The parameter is added to the
forward list at the beginning.
例子:
Input : myflist{1, 2, 3, 4, 5};
myflist.emplace_front(6);
Output : myflist = 6, 1, 2, 3, 4, 5
Input : myflist{};
myflist.emplace_front(4);
Output : myflist = 4
错误和异常
1.它具有强大的异常保证,因此,如果引发异常,则不会进行任何更改。
2.参数的类型应与容器的类型相同,否则将引发错误。
// INTEGER FORWARD LIST EXAMPLE
// CPP program to illustrate
// Implementation of emplace() function
#include
#include
using namespace std;
int main() {
forward_list myflist;
myflist.emplace_front(1);
myflist.emplace_front(2);
myflist.emplace_front(3);
myflist.emplace_front(4);
myflist.emplace_front(5);
myflist.emplace_front(6);
// forward list becomes 6, 5, 4, 3, 2, 1
// printing the forward list
for (auto it = myflist.begin(); it != myflist.end(); ++it)
cout << ' ' << *it;
return 0;
}
输出:
6 5 4 3 2 1
// STRING FORWARD LIST EXAMPLE
// CPP program to illustrate
// Implementation of emplace() function
#include
#include
#include
using namespace std;
int main() {
forward_list myflist;
myflist.emplace_front("Geeksforgeeks");
myflist.emplace_front("is");
myflist.emplace_front("This");
// forward list becomes This, is, Geeksforgeeks
// printing the forward list
for (auto it = myflist.begin(); it != myflist.end(); ++it)
cout << ' ' << *it;
return 0;
}
输出:
This is Geeksforgeeks
// CHARACTER FORWARD LIST EXAMPLE
// CPP program to illustrate
// Implementation of emplace() function
#include
#include
using namespace std;
int main() {
forward_list myflist;
myflist.emplace_front('z');
myflist.emplace_front('y');
myflist.emplace_front('x');
myflist.emplace_front('b');
myflist.emplace_front('a');
// forward list becomes a, b, x, y, z
// printing the forward list
for (auto it = myflist.begin(); it != myflist.end(); ++it)
cout << ' ' << *it;
return 0;
}
输出:
a b x y z
时间复杂度: O(1)
应用程序:使用emplace_front()函数输入具有以下数字和顺序的空的转发列表,并对给定的转发列表进行排序。
Input : 7, 89, 45, 6, 24, 58, 43
Output : 6, 7, 24, 43, 45, 58, 89
// CPP program to illustrate
// application Of emplace_front() function
#include
#include
using namespace std;
int main() {
forward_list myforwardlist{};
myforwardlist.emplace_front(43);
myforwardlist.emplace_front(58);
myforwardlist.emplace_front(24);
myforwardlist.emplace_front(6);
myforwardlist.emplace_front(45);
myforwardlist.emplace_front(89);
myforwardlist.emplace_front(7);
// Forward list becomes
// 7, 89, 45, 6, 24, 58, 43
// Sorting function
myforwardlist.sort();
for (auto it = myforwardlist.begin(); it != myforwardlist.end(); ++it)
cout << ' ' << *it;
}
输出
6 7 24 43 45 58 89
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。