vote up 2 vote down star

I'd like to implement a simple class (in Java) that would allow me to register and deregister strings, and on the basis of the current set of strings auto-complete a given string. So, the interface would be:

  • void add(String)
  • void remove(String)
  • String complete(String)

What's the best way to do this in terms of algorithms and data-structures?

flag

what if complete() is ambiguous? – maccullt Sep 16 '08 at 15:20
complete() is unambiguous in the sense that it would only complete to the point where the ambiguity starts (i.e. it would not return a registered string but a common prefix of some registered strings). There could be another method though which would return a list of registered strings. – Kaarel Sep 16 '08 at 15:30

5 Answers

vote up 2 vote down check

Hello, you should consider to use a PATRICIA trie for the data structure. Search for 'patricia trie' on google and you'll find a lot of information...

link|flag
Fantastic suggestion, I'd never heard of PATRICIA trie. Definately one I'm going to do some more research into, – Aidos Sep 16 '08 at 16:05
Thanks for the answer. I ended up using this Java implementation of radix trees: code.google.com/p/radixtree – Kaarel Sep 17 '08 at 19:01
vote up 2 vote down

The datastructure you are after is called a Ternary Search Tree.

There's a great JavaWorld example at www.javaworld.com/javaworld/jw-02-2001/jw-0216-ternary.html

link|flag
vote up 0 vote down

Is utilizing a database a viable option?

link|flag
Nope, I'm interested in a general algorithm using general data-structures like hash, tree, list, etc. – Kaarel Sep 16 '08 at 15:06
vote up 0 vote down

It would have to be some kind of a List that you can maintain in sorted order. You would also have to write your own search algorithm that would give you the index of the first element in the list that matches your search pattern. Then iterate from that index until the first element that doesn't match and you have your list of possible completions.

I'd look at TreeList from commons-collections. It has fast insert and remove times from the middle of the List which you'll want in order to maintain sorted order. It would probably be fairly easy to write your search function off of the tree that backs that list.

link|flag
vote up -2 vote down

Regular expressions.

link|flag

Your Answer

Get an OpenID
or

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