Kirill486 / functional-red-black-tree

A purely functional red-black tree data structure
MIT License
5 stars 1 forks source link

tdd/HashTreeMap #12

Open Kirill486 opened 3 years ago

Kirill486 commented 3 years ago
interface HashTreeMap<KeyType, ValueType> extends ITree<ValueType> {
    innerSearchTree: RedBlackTree<ValueType>
    hashFunction: (ValueType) => number;
}
wildfire810 commented 3 years ago

i need string key too.