On Jan 19, 2:28 pm, "Daniel T." <danie...@earthlink.net> wrote:
In addition to the other advice given. Note that if you use a map, the
name + value in the key won't be connected to the name + value in the
struct except by coincidence.
// Here is my solution:
#include <stdio.h>
#include <map>
#include <string>
struct NameValuePair
{
std::string Name;
std::string Value;
};
int main()
{
NameValuePair nvp;
std::multimap<std::string, NameValuePair> nvp_multimap;
nvp.Name = "Name"; nvp.Value = "Pete";
nvp_multimap.insert(std::make_pair(nvp.Name + nvp.Value, nvp));
nvp.Name = "Name"; nvp.Value = "Pete";
nvp_multimap.insert(std::make_pair(nvp.Name + nvp.Value, nvp));
printf("nvp_map.size(%d)\n", nvp_multimap.size());
std::multimap<std::string, NameValuePair>::iterator result;
result = nvp_multimap.find("NamePete");
if (result != nvp_multimap.end())