I want to convert a code from perl to c++, and my problem is multi key map in perl! example:
perl:
$address{name}{familyName} = $someAddress;
and keys are not unique. I want similar data structure in c++ using map or ...!? also I want to search and obtain values with first key for example I want such %keys{name} in c++ .
edited: I want to know something like if any family name for special name exists or not , also name and family name together are the key and unique not each of them.