Is there any Java library that provides an implementation (or several) of a Locality Preserving Hash Function for Strings?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You probably can use HashcodeBuilder from Jakarta: http://commons.apache.org/lang/api-2.6/org/apache/commons/lang/builder/HashCodeBuilder.html I hope this is what you mean. |
|||||
|
|
Integer.hashCode()already has this property. How do you define distance between Strings or arbitrary Java objects? – Tomasz Nurkiewicz Aug 24 '11 at 7:53