Hi all, I need a little bit help in creating a small thesaurus like application in java.
The application consists of some 50-100 categories and each category have some 2-10words of similar meaning.
e.g Close-{shutdown,fold,end,come together}
The words are hard-coded but I don't know which data structure suits the best. I don't want arrays(sequential search) but If i Construct a binary search tree for each category means here also I need to jump from one tree to another.Any idea?