Notes of Non-Blocking Snapshots Concurrent Tries
Hash tries
Hash tries (Hash array mapped tries) are trees composed of internal nodes and leaves. Leaves store key-value bindings.
Race
T1要插入k5到C2,与此同时T2要插入k4到C1。T1成功的进行了CAS,但是T2进行的CAS操作是在老的C2上,最后导致k4丢失。