A practical Single Source Shortest Path algorithm for random directed graphs with arbitrary weight in expecting linear time

Dexin Li
DOI: https://doi.org/10.48550/arXiv.1808.02591
2018-08-08
Data Structures and Algorithms
Abstract:In this paper, I present an algorithm called Raffica algorithm for Single-Source Shortest Path(SSSP). On random graph, this algorithm has linear time complexity(in expect). More precisely, the random graph uses configuration model, and the weights are distributed mostly positively. It is also linear for random grid graphs. Despite I made an assumption on the weights of the random graph, this algorithm is able to solve SSSP with arbitrary weights; when a negative cycle exists, this algorithm can find it out once traversed. The algorithm has a lot of appliances.
What problem does this paper attempt to address?