Dictionary in c++

I want to make Dictionary in c++.
give me hint how i do it.
1
2
3
4
5
6
7
#include <iostream>

int main()
{
  std::cout << "aardvark - large, nocturnal, burrowing mammal " << std::endl;
  std::cout << "aardwolf - a striped, hyenalike mammal " << std::endl;
}


Alternatively, try this: http://www.cplusplus.com/reference/stl/map/
tell me the things that used in dictionary.tell me how can i make dictionary.
You could try asking a bit more specifically. You can make a text file of words and explanations. And then just a program that loads data from the while with a search algorithm.
You can use a database. To make a connection with MySQL, for example, is very easy.
Using a database, you can use querys for insert, delete and search the words in your
dictionary.
Do you mean a dictionary for looking up words in, or do you mean an "associative array", which is often called a dictionary in programming terminology
Topic archived. No new replies allowed.