A Lock-Free Algorithm for Union-Find with Deletion

Hui Gao,Yan Fu,Jia-Ping Li
DOI: https://doi.org/10.1109/icacia.2009.5361143
2009-01-01
Abstract:The classical union-find algorithm is the basis for many graph algorithms and for dealing with equality. The easiest way to implement concurrent objects is by means of classical software solutions, but this leads to blocking when the process that holds exclusive access to the object is delayed or stops functioning. Thus we require our solutions to the data structure problem have the lock-free property. In this paper, we present an efficient lock-free algorithm for union-find with deletion, which promises more robust performance and reliability than conventional lock-based implementations.
What problem does this paper attempt to address?