Low Diameter Decomposition
Note The Low-Diameter Decomposition (LDD) algorithm is a graph partitioning algorithm that decomposes a graph into several connected subgraphs (or components) such that each subgraph has a low diameter. The diameter of a subgraph is defined as the maximum shortest path distance between any two nodes within the subgraph. The LDD algorithm works as follows: Start with an empty decomposition and an empty queue. Pick an unvisited node u and create a new set containing only u....