CHAPTER5-8.cpp
上传用户:fjc899
上传日期:2007-07-03
资源大小:187k
文件大小:0k
源码类别:

STL

开发平台:

C/C++

  1. //文件名:CHAPTER5-8.cpp
  2. #include <iostream>
  3. #include <list>
  4. using namespace std;
  5. int main()
  6. {
  7. list<char> coll; // list 容器 for character elements
  8. // append elements from 'a' to 'z'
  9. for (char c='a'; c<='z'; ++c){coll.push_back(c);}
  10. /* print all elements while there are elements print and remove the first element*/
  11. while (! coll.empty()){cout << coll.front() << ' '; coll.pop_front();}
  12. cout << endl;
  13. return 0;
  14. }