concurrent linked list

后端 未结 5 1261
既然无缘
既然无缘 2021-02-05 20:45

I am trying to design a linked list in c++ that allows concurrent access. Clearly using a single lock for this list is grossly inefficient since disjoint areas may be updated in

5条回答
  •  广开言路
    2021-02-05 21:32

    What about Skip Lists? Have a look at java implementation in "concurrent" package.

提交回复
热议问题