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

STL

开发平台:

C/C++

  1. //文件名:CHAPTER7-22.cpp
  2. #include <deque>
  3. #include <iostream>
  4. #if _MSC_VER > 1020   // if VC++ version is > 4.2
  5.    using namespace std;  // std c++ libs implemented in std
  6. #endif
  7. int main( ) 
  8. {
  9.    using namespace std;
  10.    deque <int> c1, c2;
  11.    c1.push_back( 1 );
  12.    c2.push_back( 1 );
  13.    if ( c1 == c2 ) cout << "The deques are equal." << endl;
  14.    else cout << "The deques are not equal." << endl;
  15.    c1.push_back( 1 );
  16.    if ( c1 == c2 ) cout << "The deques are equal." << endl;
  17.    else cout << "The deques are not equal." << endl;
  18. return 0;
  19. }