BFSlla
BFSlla is a graph traversal technique derived from the traditional breadth-first search (BFS). It introduces locality-aware layering to guide the expansion of nodes, aiming to reduce exploration of distant or irrelevant regions in large graphs while maintaining the distance guarantees of BFS on unweighted graphs. The method emphasizes exploring nodes that share a dense local neighborhood with the current frontier, based on a locality score computed from factors such as node degree, neighborhood overlap, and recent edge changes.
Origin and development: BFSlla was described in an academic publication series from the Center for Graph Theory
Algorithm and properties: BFSlla maintains the standard BFS distance labels while selecting the next vertex from
Applications and variants: It has been discussed for social networks, routing, and large-scale bipartite graphs. Variants