大约 1 分钟
Home > @hz-9/algorithm > SimpleHashmap
SimpleHashmap class
A simple hashmap. It is prone to key collision issues, where conflicting keys cannot be added to the hashmap.
一个简单的哈希表。 它容易遇到键冲突问题,冲突的键无法添加到哈希表中。
Signature:
export declare class SimpleHashmap<K, V> implements Hashmap<K, V>Implements: Hashmap<K, V>
Constructors
Constructor | Modifiers | Description |
|---|---|---|
Constructs a new instance of the |
Properties
Property | Modifiers | Type | Description |
|---|---|---|---|
| Record<number, KeyValue<K, V>> | ||
| number | ||
| |||
| ToKeyStr<K> | ||
| boolean | ||
| number |
Methods
Method | Modifiers | Description |
|---|---|---|