-
Notifications
You must be signed in to change notification settings - Fork 0
/
Prim.H
355 lines (277 loc) · 10.6 KB
/
Prim.H
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
/* Aleph-w
/ \ | | ___ _ __ | |__ __ __
/ _ \ | |/ _ \ '_ \| '_ \ ____\ \ /\ / / Data structures & Algorithms
/ ___ \| | __/ |_) | | | |_____\ V V / version 1.9c
/_/ \_\_|\___| .__/|_| |_| \_/\_/ https://github.com/lrleon/Aleph-w
|_|
This file is part of Aleph-w library
Copyright (c) 2002-2018 Leandro Rabindranath Leon
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
# ifndef PRIM_H
# define PRIM_H
# include <tpl_agraph.H>
# include <tpl_graph_utils.H>
# include <archeap.H>
namespace Aleph {
using namespace Aleph;
template <class GT>
struct Prim_Info
{
typename GT::Node * tree_node = nullptr; // imagen en el árbol abarcador
void * heap_node = nullptr; // puntero en el heap exclusivo
Prim_Info() : tree_node(nullptr), heap_node(nullptr) { /* empty */ }
};
# define PRIMINFO(p) static_cast<Prim_Info<GT>*>(NODE_COOKIE(p))
# define TREENODE(p) (PRIMINFO(p)->tree_node)
# define HEAPNODE(p) (PRIMINFO(p)->heap_node)
template <class GT, class Distance>
struct Prim_Heap_Info
{
typedef typename ArcHeap<GT, Distance, Prim_Heap_Info>::Node Node;
Node *& operator () (typename GT::Node * p)
{
return (Node*&) HEAPNODE(p);
}
};
template <class GT, class Distance>
struct Simple_Prim_Heap
{
typedef typename ArcHeap<GT, Distance, Simple_Prim_Heap>::Node Node;
Node *& operator () (typename GT::Node * p)
{
return (Node*&) NODE_COOKIE(p);
}
};
template <class GT>
struct Init_Prim_Info
{
GT & tree;
Init_Prim_Info(GT & __tree) : tree(__tree) { /* empty */ }
void operator () (const GT & g, typename GT::Node * p)
{
g.reset_bit(p, Aleph::Spanning_Tree);
NODE_COOKIE(p) = new Prim_Info<GT>;
TREENODE(p) = tree.insert_node(p->get_info());
}
};
template <class GT>
struct Uninit_Prim_Info
{
void operator () (const GT &, typename GT::Node * p)
{
Prim_Info<GT> * aux = PRIMINFO(p);
GT::map_nodes(p, TREENODE(p));
delete aux;
}
};
/** Calcula el árbol abarcador mínimo de un grafo según el
algoritmo de Prim.
Esta clase emplea el algoritmo de Prim para
calcular el árbol abarcador mínimo de un grafo y almacenarlo
en otro grafo.
El árbol abarcador mínimo tree completamente mapeado con el grafo.
El algoritmo utiliza una cola interna cuya longitud máxima es
proporcional número de nodos del grafo.
El algoritmo de Prim es el recomendado para grafos densos.
El procedimiento es parametrizado con las siguientes
especificaciones:
-# GT: el tipo de grafo basado en List_Graph.
-# Distance<GT>: La clase de lectura del peso del arco que debe
exportar los siguientes atributos:
-# typedef Distance<GT>::Distance_Type: el tipo de dato que
representa un peso en un arco.
-# Distance<GT>::Distance_Type operator()(typename GT::Arc *a):
que retorna el valor del peso en el arco a.
-# Distance<GT>::Max_Distance: constante estática
correspondiente al valor de distancia máximo que un algoritmo
consideraría como valor infinito.
-# typename Distance<GT>::Zero_Distance: constante estática
correspondiente al elemento neutro de la suma. Tradicionalmente,
en la inmensa mayoría de casos, este será el cero.
.
-# Compare<GT>: clase que realiza la comparación entre dos
pesos y cuyo prototipo es:
- bool operator () (const typename
Distance<GT>::Distance_Type & op1,
const typename Distance<GT>::Distance_Type & op2) const
. Por omisión, esta clase implanta el operador relacional
menor que.
-# SA: filtro de arcos
@see Kruskal_Min_Spanning_Tree
@ingroup Grafos
*/
template <class GT,
class Distance = Dft_Dist<GT>,
class SA = Dft_Show_Arc<GT>>
class Prim_Min_Spanning_Tree
{
typedef Prim_Heap_Info<GT, Distance> Acc_Heap;
typedef Simple_Prim_Heap<GT, Distance> Acc_Simple_Heap;
typedef ArcHeap<GT, Distance, Acc_Heap> Heap;
typedef ArcHeap<GT, Distance, Acc_Simple_Heap> Simple_Heap;
Distance dist;
SA sa;
public:
/** Constructor.
\param[inout] __dist acceso a la distancia de cada arco
\param[inout] __cmp comparación entre distancias de arco
\param[inout] __sa filtro de iterador de arcos
*/
Prim_Min_Spanning_Tree(Distance __dist = Distance(), SA __sa = SA())
: dist(__dist), sa(__sa)
{
// empty
}
private:
void paint_min_spanning_tree(const GT & g, typename GT::Node * first)
{
if (g.is_digraph())
throw std::domain_error("g is a digraph");
g.reset_nodes();
g.reset_arcs();
NODE_BITS(first).set_bit(Aleph::Spanning_Tree, true); // visitado
Simple_Heap heap(dist, Acc_Simple_Heap());
for (Node_Arc_Iterator<GT, SA> it(first, sa); it.has_curr(); it.next_ne())
{
typename GT::Arc * arc = it.get_current_arc_ne();
heap.put_arc(arc, it.get_tgt_node_ne());
}
const size_t V1 = g.get_num_nodes() - 1;
size_t count = 0;
while (count < V1 and not heap.is_empty())
{ // obtenga siguiente menor arco
typename GT::Arc * min_arc = heap.get_min_arc();
if (IS_ARC_VISITED(min_arc, Aleph::Spanning_Tree))
continue;
ARC_BITS(min_arc).set_bit(Aleph::Spanning_Tree, true);
typename GT::Node * src = g.get_src_node(min_arc);
typename GT::Node * tgt = g.get_tgt_node(min_arc);
if (IS_NODE_VISITED(src, Aleph::Spanning_Tree) and
IS_NODE_VISITED(tgt, Aleph::Spanning_Tree))
continue; // este arco cerraría un ciclo en el árbol
typename GT::Node * tgt_node =
IS_NODE_VISITED(src, Aleph::Spanning_Tree) ? tgt : src;
NODE_BITS(tgt_node).set_bit(Aleph::Spanning_Tree, true);
// insertar en heap arcos no visitados de tgt_node
for (Node_Arc_Iterator<GT, SA> it(tgt_node, sa); it.has_curr();
it.next_ne())
{
typename GT::Arc * arc = it.get_current_arc_ne();
if (IS_ARC_VISITED(arc, Aleph::Spanning_Tree))
continue;
typename GT::Node * tgt = it.get_tgt_node_ne();
if (IS_NODE_VISITED(tgt, Aleph::Spanning_Tree))
continue; // nodo visitado ==> causará ciclo
heap.put_arc(arc, tgt);
}
++count;
ARC_BITS(min_arc).set_bit(Aleph::Spanning_Tree, true);
}
}
void min_spanning_tree(const GT & g, typename GT::Node * first, GT & tree)
{
if (g.is_digraph())
throw std::domain_error("g is a digraph");
clear_graph(tree);
Init_Prim_Info <GT> init(tree);
Operate_On_Nodes <GT, Init_Prim_Info<GT>> () (g, init);
g.reset_arcs();
NODE_BITS(first).set_bit(Aleph::Spanning_Tree, true); // visitado
Heap heap(dist, Acc_Heap()) ;
// meter en heap arcos iniciales del primer nodo
for (Node_Arc_Iterator<GT, SA> it(first, sa); it.has_curr(); it.next_ne())
{
typename GT::Arc * arc = it.get_current_arc_ne();
heap.put_arc(arc, it.get_tgt_node_ne());
}
const size_t V1 = g.get_num_nodes() - 1;
while (tree.get_num_arcs() < V1 and not heap.is_empty())
{ // obtenga siguiente menor arco
typename GT::Arc * min_arc = heap.get_min_arc();
if (IS_ARC_VISITED(min_arc, Aleph::Spanning_Tree))
continue;
ARC_BITS(min_arc).set_bit(Aleph::Spanning_Tree, true);
typename GT::Node * src = g.get_src_node(min_arc);
typename GT::Node * tgt = g.get_tgt_node(min_arc);
if (IS_NODE_VISITED(src, Aleph::Spanning_Tree) and
IS_NODE_VISITED(tgt, Aleph::Spanning_Tree))
continue; // este arco cerraría un ciclo en el árbol
typename GT::Node * tgt_node =
IS_NODE_VISITED(src, Aleph::Spanning_Tree) ? tgt : src;
NODE_BITS(tgt_node).set_bit(Aleph::Spanning_Tree, true);
// insertar en heap arcos no visitados de tgt_node
for (Node_Arc_Iterator<GT, SA> it(tgt_node, sa); it.has_curr();
it.next_ne())
{
typename GT::Arc * arc = it.get_current_arc_ne();
if (IS_ARC_VISITED(arc, Aleph::Spanning_Tree))
continue;
typename GT::Node * tgt = it.get_tgt_node_ne();
if (IS_NODE_VISITED(tgt, Aleph::Spanning_Tree))
continue; // nodo visitado ==> causará ciclo
heap.put_arc(arc, tgt);
}
// insertar nuevo arco en tree y mapearlo
typename GT::Arc * tree_arc =
tree.insert_arc(TREENODE(src), TREENODE(tgt), min_arc->get_info());
GT::map_arcs(min_arc, tree_arc);
}
Operate_On_Nodes <GT, Uninit_Prim_Info<GT> > () (g);
}
public:
/** Invoca al cálculo del árbol abarcador mínimo por el algoritmo de
Prim.
@param[in] g el grafo al cual se desea calcular el árbol
abarcador mínimo.
@param[out] tree el grafo donde se desea guardar el árbol
abarcador mínimo resultado. Este grafo es limpiado antes del
comienzo del algoritmo.
@throw bad_alloc si no hay suficiente memoria para construir
tree. En este caso el valor de tree es indeterminado y no está
limpio.
*/
void operator () (const GT & g, GT & tree)
{
min_spanning_tree(g, g.get_first_node(), tree);
}
/** Invoca al cálculo del árbol abarcador mínimo por el algoritmo de
Prim.
@param[in] g el grafo al cual se desea calcular el árbol
abarcador mínimo.
@param[in] start nodo desde el cual se inicia elalgoritmo.
@param[out] tree el grafo donde se desea guardar el árbol
abarcador mínimo resultado. Este grafo es limpiado antes del
comienzo del algoritmo.
@throw bad_alloc si no hay suficiente memoria para construir
tree. En este caso el valor de tree es indeterminado y no está
limpio.
*/
void operator () (const GT & g, typename GT::Node * start, GT & tree)
{
min_spanning_tree(g, start, tree);
}
/// overload ()
void operator () (const GT & g)
{
paint_min_spanning_tree(g, g.get_first_node());
}
void operator () (const GT & g, typename GT::Node * start)
{
paint_min_spanning_tree(g, start);
}
};
# undef HEAPNODE
# undef TREENODE
# undef PRIMINFO
} // end namespace Aleph
# endif // PRIM_H