How would you convert an arbitrary string into a unique integer, which would be the same across Python sessions and platforms? For example hash('my string') wouldn't work because a different value is returned for each Python session and platform.
|
If a hash function really won't work for you, you can turn the string into a number.
This is invertible, by mapping each triplet through
|
|||||
|
|
Use a hash algorithm such as MD5 or SHA1, then convert the
|
|||||
|
|
First off, you probably don't really want the integers to be actually unique. If you do then your numbers might be unlimited in size. If that really is what you want then you could use a bignum library and interpret the bits of the string as the representation of a (potentially very large) integer. If your strings can include the \0 character then you should prepend a 1, so you can distinguish e.g. "\0\0" from "\0". Now, if you prefer bounded-size numbers you'll be using some form of hashing. MD5 will work but it's overkill for the stated purpose. I recommend using sdbm instead, it works very well. In C it looks like this:
The source, http://www.cse.yorku.ca/~oz/hash.html, also presents a few other hash functions. |
||||
|
|
Here are my python27 implementation for algorithms listed here: http://www.cse.yorku.ca/~oz/hash.html. No idea if they are efficient or not.
|
|||
|
|
|
Here's another option, quite crude (probably has many collisions) and not very legible. It worked for the purpose of generating an int (and later on, a random color) for different strings:
|
|||
|
|