douwang6635 2010-10-20 20:14
浏览 22
已采纳

字符串上的最小校验和

scratching my head over this.

i have 350 strings average 90 chars long, all strings are unique. Now, i wanna generate a unique id for each string.

i tried the sum of chars in the string wich gave two doubles, the returned sum is not unique enough. Anybody any idea how to approach this? I thought of hash(), is that the best solution?

abcdef will return the same as abcdfe

  • 写回答

2条回答 默认 最新

  • dongtu7205 2010-10-20 20:23
    关注

    If you have a fixed set of strings and you will only need to look those up then find a minimal perfect hash function. http://en.wikipedia.org/wiki/Perfect_hash_function

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?