C++list容器list构造函数

tech2026-03-18  1

C++list容器list构造函数

#include <iostream> #include <list> using namespace std; void printList(const list<int>& l) { for (list<int>::const_iterator it = l.begin(); it != l.end(); ++it) { cout << *it << " "; } cout << endl; } void test() { list<int>L1; L1.push_back(10); L1.push_back(20); L1.push_back(30); L1.push_back(40); printList(L1); list<int>L2(L1.begin(), L1.end()); printList(L2); list<int>L3(L2); printList(L3); list<int>L4(10, 1000); printList(L4); } int main() { test(); return 0; }

C++list容器list构造函数

最新回复(0)