Efficient Algorithms for Computing Random Walk Centrality
Changan Liu, Zixuan Xie, Ahad N. Zehmakan, Zhongzhi Zhang
TL;DR
This paper tackles the impractical cubic-time computation of Random Walk Centrality (RWC) on large graphs by introducing a pivot-based reformulation that reduces the core work to a single Laplacian solve plus lightweight diagonal estimation. It delivers two near-linear-time algorithms: FastChol, which uses incomplete Cholesky factorization and sparse inverse estimation, and FastWalk, which employs Wilson’s loop-erased random walks to sample rooted spanning trees. The authors prove theoretical guarantees, demonstrate substantial speedups and memory savings over the state-of-the-art, and show scalability to graphs with millions of nodes and edges while maintaining high approximation quality. The methods significantly broaden the practical applicability of global centrality analysis on real-world networks and offer a foundation for extensions to dynamic or grouped centrality computations.
Abstract
Random walk centrality is a fundamental metric in graph mining for quantifying node importance and influence, defined as the weighted average of hitting times to a node from all other nodes. Despite its ability to capture rich graph structural information and its wide range of applications, computing this measure for large networks remains impractical due to the computational demands of existing methods. In this paper, we present a novel formulation of random walk centrality, underpinning two scalable algorithms: one leveraging approximate Cholesky factorization and sparse inverse estimation, while the other sampling rooted spanning trees. Both algorithms operate in near-linear time and provide strong approximation guarantees. Extensive experiments on large real-world networks, including one with over 10 million nodes, demonstrate the efficiency and approximation quality of the proposed algorithms.
