from:http://www.yolinux.com/TUTORIALS/CppStlMultiMap.html#include <string.h>#include <iostream>#include <map>#include <utility>using namespace std;struct cmp_str { bool operator()(char const *a, char const *b) { return std::strcmp(a, b) < 0; }};int main(){ map<char *, i Read More
posted @ 2012-11-22 19:45 庚武 Views(230) Comments(0) Diggs(0) Edit