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

STL

开发平台:

C/C++

  1. //文件名:CHAPTER5-6.cpp
  2. #include <iostream>
  3. #include <deque>
  4. using namespace std;
  5. int main()
  6. {
  7. deque<float> coll; // deque 容器 for floating-point elements
  8. // insert elements from 1.1 to 6.6 each at the front
  9. for (int i=1; i<=6; ++i) 
  10. { coll.push_front(i*1.1); // insert at the front
  11. // print all elements followed by a space
  12. for (int i=0; i<coll.size(); ++i) {cout << coll[i] << ' '; }
  13. cout << endl;
  14. }
  15. return 1;
  16. }