STL序列容器(list)
Posted oytt
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了STL序列容器(list)相关的知识,希望对你有一定的参考价值。
list: 底层实现为双向链表
1、基本用法
#include <iostream> #include <list> using namespace std; // list:双向链表 void ShowPrint(list<int> d) { for (list<int>::iterator it = d.begin(); it != d.end(); ++it) { cout << *it << endl; } } int main() { list<int>val; val.push_back(1); val.push_back(9); val.push_back(5); val.sort(); ShowPrint(val); system("pause"); return 0; }
以上是关于STL序列容器(list)的主要内容,如果未能解决你的问题,请参考以下文章