列表是C++中用于以非连续方式存储数据的容器。通常,数组和向量本质上是连续的,因此,与列表中的插入和删除选项相比,插入和删除操作的成本更高。
清单:: push_front()
push_front()函数用于将元素从前面推入列表。在当前第一个元素和容器大小增加1之前,将新值插入到列表的开头。
句法 :
listname.push_front(value)
Parameters :
The value to be added in the front is
passed as the parameter
Result :
Adds the value mentioned as the parameter
to the front of the list named as listname
例子:
Input : list list{1, 2, 3, 4, 5};
list.push_front(6);
Output : 6, 1, 2, 3, 4, 5
Input : list list{5, 4, 3, 2, 1};
list.push_front(6);
Output :6, 5, 4, 3, 2, 1
错误和异常
- 强大的异常保证–如果引发异常,则容器中没有任何更改。
- 如果列表不支持作为参数传递的值,则它将显示未定义的行为。
// CPP program to illustrate
// push_front() function
#include
#include
using namespace std;
int main()
{
list mylist{ 1, 2, 3, 4, 5 };
mylist.push_front(6);
// list becomes 6, 1, 2, 3, 4, 5
for (auto it = mylist.begin(); it != mylist.end(); ++it)
cout << ' ' << *it;
}
输出:
6 1 2 3 4 5
应用程序:使用push_front()函数输入具有以下数字和顺序的空列表,并对给定列表进行排序。
Input : 7, 89, 45, 6, 24, 58, 43
Output : 6, 7, 24, 43, 45, 58, 89
// CPP program to illustrate
// application Of push_front() function
#include
#include
using namespace std;
int main()
{
list mylist{};
mylist.push_front(43);
mylist.push_front(58);
mylist.push_front(24);
mylist.push_front(6);
mylist.push_front(45);
mylist.push_front(89);
mylist.push_front(7);
// list becomes 7, 89, 45, 6, 24, 58, 43
// Sorting function
mylist.sort();
for (auto it = mylist.begin(); it != mylist.end(); ++it)
cout << ' ' << *it;
}
输出:
6 7 24 43 45 58 89
清单:: push_back()
push_back()函数用于将元素从背面推入列表。在当前的最后一个元素之后,新值将插入到列表的末尾,并且容器大小增加1。
句法 :
listname.push_back(value)
Parameters :
The value to be added in the back is
passed as the parameter
Result :
Adds the value mentioned as the parameter
to the back of the list named as listname
例子:
Input : list list{1, 2, 3, 4, 5};
list.push_back(6);
Output :1, 2, 3, 4, 5, 6
Input : list list{5, 4, 3, 2, 1};
list.push_front(0);
Output :5, 4, 3, 2, 1, 0
错误和异常
- 强大的异常保证–如果引发异常,则容器中没有任何更改。
- 如果列表不支持作为参数传递的值,则它将显示未定义的行为。
// CPP program to illustrate
// push_back() function
#include
#include
using namespace std;
int main()
{
list mylist{ 1, 2, 3, 4, 5 };
mylist.push_back(6);
// list becomes 1, 2, 3, 4, 5, 6
for (auto it = mylist.begin(); it != mylist.end(); ++it)
cout << ' ' << *it;
}
输出:
1 2 3 4 5 6
应用程序:使用push_back()函数输入具有以下数字和顺序的空列表,并对给定列表进行排序。
Input : 7, 89, 45, 6, 24, 58, 43
Output : 6, 7, 24, 43, 45, 58, 89
// CPP program to illustrate
// application Of push_back() function
#include
#include
using namespace std;
int main()
{
list mylist{};
mylist.push_back(7);
mylist.push_back(89);
mylist.push_back(45);
mylist.push_back(6);
mylist.push_back(24);
mylist.push_back(58);
mylist.push_back(43);
// list becomes 7, 89, 45, 6, 24, 58, 43
// Sorting function
mylist.sort();
for (auto it = mylist.begin(); it != mylist.end(); ++it)
cout << ' ' << *it;
}
输出:
6 7 24 43 45 58 89
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。