hashcode.py
Posted 十年之光
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了hashcode.py相关的知识,希望对你有一定的参考价值。
def convert_n_bytes(n, b): bits = b * 8 return (n + 2 ** (bits - 1)) % 2 ** bits - 2 ** (bits - 1) def convert_4_bytes(n): return convert_n_bytes(n, 4) def getHashCode(s): h = 0 n = len(s) for i, c in enumerate(s): h = h + ord(c) * 31 ** (n - 1 - i) return convert_4_bytes(h) if __name__=="__main__":
测试一下: print(getHashCode(‘123‘))
以上是关于hashcode.py的主要内容,如果未能解决你的问题,请参考以下文章