I want to implement a high speed in memory implementation of Trie to create backend to auto suggestion / spell checker.
Is there already some good implementation based on in memory implementations like hazlecast.
Also which java open source tool is best suggested for these kind of usage
I want to implement a high speed in memory implementation of Trie to create
Share
I would use a plain NavigableSet like TreeSet. Its built in and supports range searches.
If you want something more memory efficient you can use an array.