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

STL

开发平台:

C/C++

  1. //文件名:CHAPTER4-3.cpp
  2. #include <iostream>
  3. #include <vector>
  4. #include <algorithm>
  5. #include <iterator>
  6. #include <stdlib.h>
  7. #include <stdio.h>
  8. #include <functional>
  9. using namespace std;
  10. main (int argc, char *argv[])
  11. {
  12. vector<int> a(100); // initial size 100
  13. random_shuffle (a.begin(), a.end());                         // shuffle
  14. copy (a.begin(), a.end(), ostream_iterator<int> (cout, "n")); // print
  15. }