赞
踩
#include <iostream> #include <list> #include <algorithm> using namespace std; int main() { list<int> list1; for (int k=0;k<10;k++) { list1.push_back(k); } for (int k=0;k<10;k++) { list1.insert(list1.end(), k); } list<int>::iterator list_iter1; for (list_iter1 = list1.begin();list_iter1 != list1.end();++list_iter1) { cout << *list_iter1 << " "; } cout << endl; //find list<int>::iterator list_iter2 = find(list1.begin(),list1.end(),2); cout << *list_iter2 << endl; system("pause"); return 0; }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。