Defined in File GroupCloseness.hpp
public NetworKit::Algorithm
(Class Algorithm)
Public Functions
Finds the group of nodes with highest (group) closeness centrality. The algorithm is the one proposed in Bergamini et al., ALENEX 2018 and finds a solution that is a (1-1/e)-approximation of the optimum. The worst-case running time of this approach is quadratic, but usually much faster in practice.
G – An unweighted graph.
k – Size of the group of nodes
H – If equal 0, simply runs the algorithm proposed in Bergamini et al.. If > 0, interrupts all BFSs after H iterations (suggested for very large networks). @
Computes the group with maximum closeness on the graph passed in the constructor.