Hello, I'm asking for help w/ a dictionary look-up program by building the following two classes: String class, and Associative_Array class. I think that an associative list is the simplest way to implement this notion. Should I use the C++ maps? If so, how? I'm struggling w/ how to begin this project...:sad: Please assist if you can. Thank you.

I would use a map, definately. Create the map and then when you go to insert something, it would be like this:

map.insert( make_pair("Dog","Big fury animal") );

That's how I would do it, but of course there are many solutions to this.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.