当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ list push_front()用法及代码示例


list::push_front()是C++ STL中的内置函数,用于在当前顶部元素之前的列表容器的前面插入元素。此函数还将容器的大小增加1。

用法

list_name.push_front(dataType value)

参数:此函数接受单个参数值。此参数表示需要在列表容器的前面插入的元素。


返回值:此函数不返回任何内容。

以下示例程序旨在说明C++ STL中的list::push_front()函数:

// CPP program to illustrate the 
// list::push_front() function 
#include <bits/stdc++.h> 
using namespace std; 
  
int main() 
{ 
    // Creating a list 
    list<int> demoList; 
  
    // Adding elements to the list 
    // using push_back() 
    demoList.push_back(10); 
    demoList.push_back(20); 
    demoList.push_back(30); 
    demoList.push_back(40); 
  
    // Initial List: 
    cout << "Initial List: "; 
    for (auto itr = demoList.begin(); itr != demoList.end(); itr++) 
        cout << *itr << " "; 
  
    // Adding elements to the front of List 
    // using push_front 
    demoList.push_front(5); 
  
    // List after adding elements to front 
    cout << "\n\nList after adding elements to the front:\n"; 
    for (auto itr = demoList.begin(); itr != demoList.end(); itr++) 
        cout << *itr << " "; 
  
    return 0; 
}
输出:
Initial List: 10 20 30 40 

List after adding elements to the front:
5 10 20 30 40


相关用法


注:本文由纯净天空筛选整理自barykrg大神的英文原创作品 list push_front() function in C++ STL。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。