Skip to content

Latest commit

 

History

History
46 lines (25 loc) · 2.04 KB

graph_partition.md

File metadata and controls

46 lines (25 loc) · 2.04 KB

Graph partition

General

The graph partitioning problem asks for a division of a graph's node set into k equally sized blocks such that the number of edges that run between the blocks is minimized. The size of each block is a configurable parameter.

problem_description_partitioning

Application of the algorithm

Road network Graphics process Scocial Network
roadnetwork_partition_example_1 graphics_partition football_team_match

Graph partition is the first step to distribute processing graph data.

Ideal partition result

ideal_partition ideal_partition

Basic Algorithm

Solutions for Route network

Distribute Partition

More information