vote up 0 vote down star

I'm building a thesaurus using a HashMap to store the synonyms.

I'm trying to search through the words based on a regular expression: the method will have to take a string as parameter and return an array of results. Here's my first stab at it:

public ArrayList<String> searchDefinition(String regex) {
	ArrayList<String> results = new ArrayList<String>();

	Pattern p = Pattern.compile(regex);

	Set<String> keys = thesaurus.keySet();
	Iterator<String> ite = keys.iterator();

	while (ite.hasNext()) {
		String candidate = ite.next();
		Matcher m = p.matcher(candidate);
		System.out.println("Attempting to match: " + candidate + " to "  + regex);
		if (m.matches()) {
			System.out.println("it matches");
			results.add(candidate);
		}
	}	

	if (results.isEmpty()) {
		return null;
	}
	else {
		return results;
	}
}

Now, this does not work as I would expect (or maybe I'm using regular expressions incorrectly). If I have the following keys in the hashmap:

cat, car, chopper

then by calling searchDefinition("c") or searchDefinition("c*") I get null.

  1. How do I make this work as expected?
  2. Is there a better data structure than HashMap to keep a graph like needed by a thesaurus? (curiosity only, as for this assignment we're asked to use Java Collection Map).
  3. Anything else I'm doing innapropriately in the code above?

Thanks, Dan

EDIT: I've corrected the example. It doesn't work even if I use the correct case.

flag

39% accept rate
Clint has the answer. But note that calling find() with "c*" will match any entry--because all entries have 0 or more c's. Be careful with your regexes. – mmyers May 18 at 21:10
Especially since you are passing the regex directly into the Pattern compiler. You can easily get PatternSyntaxException. – Clint May 18 at 21:17
Not the question, but don't return null for empty and do use the enhanced for loop. – Tom Hawtin - tackline May 18 at 21:29

5 Answers

vote up 2 vote down check

You need to specify case insensitivity Pattern.compile( "c", Pattern.CASE_INSENSITIVE ). To find a word with a c in it you need to use matcher.find(). Matcher.matches() tries to match the whole string.

link|flag
Beat me to it (probably because I paused to link to the docs :P). – mmyers May 18 at 21:07
Post first then edit like mad! – Clint May 18 at 21:09
Thanks! That did the trick. So, to get this straight: * i should use find() if I want to find all the words that "contain" a certain regex * match() to find all the words that "are" a certain regex, nothing less, nothing more – Dan May 18 at 21:14
vote up 1 vote down

But, hmm:

(a) Why would you use a HashMap if you intend to always search it sequentially? That's a lot of wasted overhead to process the hash keys and all when you never use them. Surely a simple ArrayList or LinkedList would be a better idea.

(b) What does this have to do with a thesaurus? Why would you search a thesaurus using regular expressions? If I want to know synonyms for, say, "cat", I would think that I would search for "cat", not "c.*".

My first thought on how to build a thesaurus would be ... well, I guess the first question I'd ask is, "Is synonym an equivalance relationship?", i.e. if A is a synonym for B, does it follow that B is a synonym for A? And if A is a synonym for B and B is a synonym for C, then is A a synonym for C? Assuming the answers to these questions are "yes", then what we want to build is something that divides all the words in the language into sets of synonyms, so we then can map any word in each set to all the other words in that set. So what you need is a way to take any word, map it to some sort of nexus point, and then go from that nexus point to all of the words that map to it.

This would be straightforward on a database: Just create a table with two columns, say "word" and "token", each with its own index. All synonyms map to the same token. The token can be anything as long as its unique for any given set of synonyms, like a sequence number. Then search for the given word, find the associated token, and then get all the words with that token. For example we might create records with (big,1), (large,1), (gigantic,1), (cat,2), (feline,2), etc. Search for "big" and you get 1, then search for 1 and you get "big", "large", and "giant".

I don't know any class in the built-in Java collections that does this. The easiest way I can think of is to build two co-ordinated hash tables: One that maps words to tokens, and another that maps tokens to an array of words. So table 1 might have big->1, large->1, gigantic->1, cat->2, feline->2, etc. Then table 2 maps 1->[big,large,gigantic], 2->[cat,feline], etc. You look up in the first table to map a word to a token, and in the second to map that token back to a list of words. It's clumsy because all the data is stored redundantly, maybe there's a better solution but I'm not getting it off the top of my head. (Well, it would be easy if we assume that we're going to sequentially search the entire list of words every time, but performance would suck as the list got big.)

link|flag
vote up 2 vote down

Is that the regular expression you're using?

The Matcher.matches() method returns true only if the whole entire input sequence matches the expression (from the Javadoc), so you would need to use "c.*" in this case, not "c*" as well as matching case insensitively.

link|flag
"c*" would be the "glob" syntax. – Tom Hawtin - tackline May 18 at 21:27
vote up 1 vote down

It looks like you're using your regexes inappropriately. "c" would only match a lower case c, not upper case.

That said, I'd suggest you look into using an embedded database with full text search capabilities.

link|flag
vote up 1 vote down

Regular expressions are case sensitive. You want:

Pattern p = Pattern.compile(regex, Pattern.CASE_INSENSITIVE);
link|flag
sorry, bad example. I've edited the question. It doesn't work even if i use the appropriate case. – Dan May 18 at 21:03

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.