S
Sigfried
I need to do some lookup on a set of strings with associated data. I've
tried HashMap and TreeMap (wich are slower).
I'd like to get more performance, so i've read about Ternary Search Tree
which are supposed to be equally fast with hashmap on successful searchs.
So is there faster than that ? I mean at least 30 % faster than HashMap
? Is there a digital search tree java implementation (with benchmark?)
around ? I didn't find any on google.
tried HashMap and TreeMap (wich are slower).
I'd like to get more performance, so i've read about Ternary Search Tree
which are supposed to be equally fast with hashmap on successful searchs.
So is there faster than that ? I mean at least 30 % faster than HashMap
? Is there a digital search tree java implementation (with benchmark?)
around ? I didn't find any on google.