You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: algorithms/msf.md
+7-10Lines changed: 7 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ parent: "Algorithms"
8
8
9
9
## Overview
10
10
11
-
The Minimum Spanning Forest (MSF) finds the relationships with minimum weights such that any weakly connected component in the graph stays connected. It treats all edges as bi-directional and ensures that any pair of nodes that previously shared a path will still share a unique path in the MSF subgraph.
11
+
The Minimum Spanning Forest (MSF) finds the relationships with minimum weights such that any weakly connected component in the graph stays connected. It treats all edges as bi-directional and ensures that any pair of nodes that previously shared a path will still share a unique path in the MSF graph.
12
12
13
13
MSF serves as a common algorithm in scenarios such as:
14
14
- Designing a cost-effective road network connecting several cities.
@@ -39,15 +39,12 @@ The procedure accepts an optional configuration `Map` with the following optiona
39
39
|`weightAttribute`| string | Unweighted | the attribute to use as the tree weight. |
40
40
41
41
### Return Values
42
-
The procedure returns a stream of records with the following fields:
0 commit comments