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