GRASS 8 Programmer's Manual 8.6.0dev(2026)-ddeab64dbf
Loading...
Searching...
No Matches
spanningtree.c
Go to the documentation of this file.
1/*!
2 \file vector/neta/spanningtree.c
3
4 \brief Network Analysis library - spanning tree
5
6 Computes minimum spanning tree in the network.
7
8 (C) 2009-2010 by Daniel Bundala, and the GRASS Development Team
9
10 This program is free software under the GNU General Public License
11 (>=v2). Read the file COPYING that comes with GRASS for details.
12
13 \author Daniel Bundala (Google Summer of Code 2009)
14 */
15
16#include <stdio.h>
17#include <stdlib.h>
18#include <grass/gis.h>
19#include <grass/vector.h>
20#include <grass/glocale.h>
21#include <grass/dgl/graph.h>
22
23struct union_find {
24 int *parent;
25};
26
27static int uf_initialize(struct union_find *uf, int size)
28{
29 int i;
30
31 uf->parent = (int *)G_calloc(size, sizeof(int));
32 if (!uf->parent)
33 return 0;
34 for (i = 0; i < size; i++)
35 uf->parent[i] = i;
36 return 1;
37}
38
39static void uf_release(struct union_find *uf)
40{
41 G_free(uf->parent);
42}
43
44static int uf_find(struct union_find *uf, int v)
45{
46 int cur = v, tmp;
47
48 while (uf->parent[cur] != cur)
49 cur = uf->parent[cur];
50 while (uf->parent[v] != v) {
51 tmp = uf->parent[v];
52 uf->parent[v] = cur;
53 v = tmp;
54 }
55 return cur;
56}
57
58/*TODO: union by rank */
59static void uf_union(struct union_find *uf, int u, int v)
60{
61 int parent_u = uf_find(uf, u);
62 int parent_v = uf_find(uf, v);
63
64 if (parent_u != parent_v)
65 uf->parent[parent_u] = parent_v;
66}
67
68typedef struct {
69 dglInt32_t cost;
70 dglInt32_t *edge;
71} edge_cost_pair;
72
73static int cmp_edge(const void *pa, const void *pb)
74{
75 if (((edge_cost_pair *)pa)->cost < ((edge_cost_pair *)pb)->cost)
76 return -1;
77
78 return (((edge_cost_pair *)pa)->cost > ((edge_cost_pair *)pb)->cost);
79}
80
81/*!
82 \brief Get number of edges in the spanning forest
83
84 \param graph input graph
85 \param[out] tree_list list of edges
86
87 \return number of edges
88 \return -1 on failure
89 */
91{
92 int nnodes, edges, nedges, i, index;
93 edge_cost_pair *perm; /*permutation of edges in ascending order */
94 struct union_find uf;
96
97 /* TODO: consider closed nodes / node costs */
98
100 nedges = dglGet_EdgeCount(graph);
101 perm = (edge_cost_pair *)G_calloc(nedges, sizeof(edge_cost_pair));
102 if (!perm || !uf_initialize(&uf, nnodes + 1)) {
103 G_fatal_error(_("Out of memory"));
104 return -1;
105 }
106 /* dglGetEdge is only supported with graphs version > 1. Therefore this
107 * complicated enumeration of the edges... */
108 index = 0;
109 G_message(_("Computing minimum spanning tree..."));
111 for (i = 1; i <= nnodes; i++) {
112 G_percent(i, nnodes + nedges, 1);
113 dglInt32_t *edge;
114
116 &et, graph,
118 for (edge = dglEdgeset_T_First(&et); edge;
119 edge = dglEdgeset_T_Next(&et))
120 if (dglEdgeGet_Id(graph, edge) > 0) {
121 perm[index].edge = edge;
122 perm[index].cost = dglEdgeGet_Cost(graph, edge);
123 index++;
124 }
125
127 }
128 edges = 0;
129 qsort((void *)perm, index, sizeof(edge_cost_pair), cmp_edge);
130 for (i = 0; i < index; i++) {
131 G_percent(i + nnodes, nnodes + nedges, 1);
132 dglInt32_t head =
133 dglNodeGet_Id(graph, dglEdgeGet_Head(graph, perm[i].edge));
134 dglInt32_t tail =
135 dglNodeGet_Id(graph, dglEdgeGet_Tail(graph, perm[i].edge));
136 if (uf_find(&uf, head) != uf_find(&uf, tail)) {
137 uf_union(&uf, head, tail);
138 edges++;
140 }
141 }
142 G_percent(index, index, 1);
143 G_free(perm);
144 uf_release(&uf);
145 return edges;
146}
void G_percent(long, long, int)
Print percent complete messages.
Definition percent.c:61
void G_percent_reset(void)
Reset G_percent() to 0%; do not add newline.
Definition percent.c:117
void G_free(void *)
Free allocated memory.
Definition gis/alloc.c:147
#define G_calloc(m, n)
Definition defs/gis.h:140
void void void void G_fatal_error(const char *,...) __attribute__((format(printf
void G_message(const char *,...) __attribute__((format(printf
int Vect_list_append(struct ilist *, int)
Append new item to the end of list if not yet present.
#define _(str)
Definition glocale.h:10
int NetA_spanning_tree(dglGraph_s *graph, struct ilist *tree_list)
Get number of edges in the spanning forest.
List of integers.
Definition gis.h:715
long dglInt32_t
Definition type.h:36
dglInt32_t * dglGetNode(dglGraph_s *pGraph, dglInt32_t nNodeId)
dglInt32_t * dglNodeGet_OutEdgeset(dglGraph_s *pGraph, dglInt32_t *pnNode)
int dglEdgeset_T_Initialize(dglEdgesetTraverser_s *pT, dglGraph_s *pGraph, dglInt32_t *pnEdgeset)
dglInt32_t dglEdgeGet_Id(dglGraph_s *pGraph, dglInt32_t *pnEdge)
dglInt32_t * dglEdgeset_T_First(dglEdgesetTraverser_s *pT)
int dglGet_EdgeCount(dglGraph_s *pgraph)
dglInt32_t * dglEdgeset_T_Next(dglEdgesetTraverser_s *pT)
int dglGet_NodeCount(dglGraph_s *pgraph)
dglInt32_t dglEdgeGet_Cost(dglGraph_s *pGraph, dglInt32_t *pnEdge)
void dglEdgeset_T_Release(dglEdgesetTraverser_s *pT)
dglInt32_t * dglEdgeGet_Head(dglGraph_s *pGraph, dglInt32_t *pnEdge)
dglInt32_t * dglEdgeGet_Tail(dglGraph_s *pGraph, dglInt32_t *pnEdge)
dglInt32_t dglNodeGet_Id(dglGraph_s *pGraph, dglInt32_t *pnNode)