We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
刚看了视频,有几个关于hash table的问题。
_load_factor为什么用装饰@Property?@Property有什么特殊的么,不装饰可以么?
第90行,if key in self:。 这里能用in 是应为之前定义了__contains__是吧。
在没有冲突的情况下,同一个hash函数,同一个key值,对于不同大小的hash table,得到的index是一样的么?这是必要条件,还是也可以不一样?比如hash table 的大小是5的时候,在没有冲突的情况下,hash(3) = 2, 那当hash table的大小变成10的时候,hash(3)一定要等于2么?
_rehash函数里面, 110行, 如果旧的slot 是empty的,不需要放在新的hash里面么?比如在旧的hash table里第5个slot有数A,又加了一个数B,hash值也是5,冲突,然后经过计算,B被放到了第6个slot。然后我们删掉第5个slot里的A,第五个slot是empty。 这时候rehash一下,第五个slot的状态是unsed。如果查找B,首先计算得到的是5,但是发现slot 5是unused, 会返回None。 所以是不是应该empty的slot也要考虑。
第60行hash(key),是用了python自带的hash的函数,如果不用python的hash函数,怎么能将所有的key map到数字呢?
The text was updated successfully, but these errors were encountered:
__contains__
参考:
Sorry, something went wrong.
No branches or pull requests
刚看了视频,有几个关于hash table的问题。
_load_factor为什么用装饰@Property?@Property有什么特殊的么,不装饰可以么?
第90行,if key in self:。 这里能用in 是应为之前定义了__contains__是吧。
在没有冲突的情况下,同一个hash函数,同一个key值,对于不同大小的hash table,得到的index是一样的么?这是必要条件,还是也可以不一样?比如hash table 的大小是5的时候,在没有冲突的情况下,hash(3) = 2, 那当hash table的大小变成10的时候,hash(3)一定要等于2么?
_rehash函数里面, 110行, 如果旧的slot 是empty的,不需要放在新的hash里面么?比如在旧的hash table里第5个slot有数A,又加了一个数B,hash值也是5,冲突,然后经过计算,B被放到了第6个slot。然后我们删掉第5个slot里的A,第五个slot是empty。 这时候rehash一下,第五个slot的状态是unsed。如果查找B,首先计算得到的是5,但是发现slot 5是unused, 会返回None。 所以是不是应该empty的slot也要考虑。
第60行hash(key),是用了python自带的hash的函数,如果不用python的hash函数,怎么能将所有的key map到数字呢?
The text was updated successfully, but these errors were encountered: