betweennesscentrality
Betweenness centrality is a measure of centrality in a graph that reflects the extent to which a node lies on shortest paths between other nodes. Intuitively, a node with high betweenness acts as a bridge or broker, influencing or controlling communication and flow within the network.
Formal definition: Given a graph G=(V,E), for each pair of distinct nodes s and t with s
Computation: The most common exact method is Brandes' algorithm, which aggregates shortest-path information from each source.
Applications and limitations: Betweenness centrality is widely used to identify potential brokers and bottlenecks in social
Variants exist for weighted graphs, directed graphs, and normalized forms for comparison across networks.