小于 1 分钟
Home > @hz-9/algorithm > BetterHashmap
BetterHashmap class
一个比较合适的哈希表,采用 djb2 哈希算法,以及平方探测,用以解决冲突。
Signature:
export declare class BetterHashmap<K, V> extends SquareProbingHashmap<K, V>Extends: SquareProbingHashmap<K, V>
Constructors
Constructor | Modifiers | Description |
|---|---|---|
Constructs a new instance of the |