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

STL

开发平台:

C/C++

  1. //文件名:CHAPTER5-15.cpp
  2. #include <iostream>
  3. #include "SLIST"
  4. #include <functional>
  5. using namespace std;
  6. int main() 
  7. {
  8.   SLIST<int> L;
  9.   L.push_front(0);
  10.   L.push_front(1);
  11.   //L.insert_after(L.begin(), 2);
  12.   copy(L.begin(), L.end(),ostream_iterator<int>(cout, " "));  // The output is 1 2 0
  13.   cout << endl;
  14.   SLIST<int>::iterator back = L.end();
  15.   L.push_front( 3); 
  16.   L.push_front(4);
  17.   L.push_front(5);
  18.   copy(L.begin(), L.end(),ostream_iterator<int>(cout, " "));  // The output is 1 2 0 3 4 5
  19.   cout << endl;
  20. }