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

STL

开发平台:

C/C++

  1. //文件名:CHAPTER5-20.cpp
  2. #include <map>
  3. #include <iostream>
  4. using namespace std;
  5. struct ltstr{ bool operator()(const char* s1, const char* s2) const{ return strcmp(s1, s2) < 0; }};
  6. int main()
  7. { map<const char*, int, ltstr> months;
  8.   months["january"] = 31;
  9.   months["february"] = 28;
  10.   months["march"] = 31;
  11.   months["april"] = 30;
  12.   months["may"] = 31;
  13.   months["june"] = 30;
  14.   months["july"] = 31;
  15.   months["august"] = 31;
  16.   months["september"] = 30;
  17.   months["october"] = 31;
  18.   months["november"] = 30;
  19.   months["december"] = 31;
  20.   cout << "june -> " << months["june"] << endl;
  21.   map<const char*, int, ltstr>::iterator cur  = months.find("june");
  22.   map<const char*, int, ltstr>::iterator prev = cur;
  23.   map<const char*, int, ltstr>::iterator next = cur;    
  24.   ++next;
  25.   --prev;
  26.   cout << "Previous (in alphabetical order) is " << (*prev).first << endl;
  27.   cout << "Next (in alphabetical order) is " << (*next).first << endl;
  28. }