mirror of
https://github.com/krahets/hello-algo.git
synced 2025-07-24 18:55:36 +08:00

* Update hash_collision.md a detailed description of the conditions for converting a linked list into a red-black tree is as follows. ```java final void treeifyBin(Node<K,V>[] tab, int hash) { int n, index; Node<K,V> e; if (tab == null || (n = tab.length) < MIN_TREEIFY_CAPACITY) } ``` * Update hash_collision.md --------- Co-authored-by: Yudong Jin <krahets@163.com>