alpar@906
|
1 |
/* -*- C++ -*-
|
alpar@921
|
2 |
* src/lemon/dfs.h - Part of LEMON, a generic C++ optimization library
|
alpar@906
|
3 |
*
|
alpar@1164
|
4 |
* Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
|
alpar@906
|
5 |
* (Egervary Combinatorial Optimization Research Group, EGRES).
|
alpar@906
|
6 |
*
|
alpar@906
|
7 |
* Permission to use, modify and distribute this software is granted
|
alpar@906
|
8 |
* provided that this copyright notice appears in all copies. For
|
alpar@906
|
9 |
* precise terms see the accompanying LICENSE file.
|
alpar@906
|
10 |
*
|
alpar@906
|
11 |
* This software is provided "AS IS" with no warranty of any kind,
|
alpar@906
|
12 |
* express or implied, and with no claim as to its suitability for any
|
alpar@906
|
13 |
* purpose.
|
alpar@906
|
14 |
*
|
alpar@906
|
15 |
*/
|
alpar@906
|
16 |
|
alpar@921
|
17 |
#ifndef LEMON_DFS_H
|
alpar@921
|
18 |
#define LEMON_DFS_H
|
alpar@780
|
19 |
|
alpar@780
|
20 |
///\ingroup flowalgs
|
alpar@780
|
21 |
///\file
|
alpar@1218
|
22 |
///\brief Dfs algorithm.
|
alpar@780
|
23 |
|
alpar@1218
|
24 |
#include <lemon/list_graph.h>
|
klao@946
|
25 |
#include <lemon/graph_utils.h>
|
alpar@921
|
26 |
#include <lemon/invalid.h>
|
alpar@1218
|
27 |
#include <lemon/error.h>
|
alpar@1218
|
28 |
#include <lemon/maps.h>
|
alpar@780
|
29 |
|
alpar@921
|
30 |
namespace lemon {
|
alpar@780
|
31 |
|
alpar@780
|
32 |
|
alpar@1218
|
33 |
|
alpar@1218
|
34 |
///Default traits class of Dfs class.
|
alpar@1218
|
35 |
|
alpar@1218
|
36 |
///Default traits class of Dfs class.
|
alpar@1218
|
37 |
///\param GR Graph type.
|
alpar@1218
|
38 |
template<class GR>
|
alpar@1218
|
39 |
struct DfsDefaultTraits
|
alpar@1218
|
40 |
{
|
alpar@1218
|
41 |
///The graph type the algorithm runs on.
|
alpar@1218
|
42 |
typedef GR Graph;
|
alpar@1218
|
43 |
///\brief The type of the map that stores the last
|
alpar@1218
|
44 |
///edges of the %DFS paths.
|
alpar@1218
|
45 |
///
|
alpar@1218
|
46 |
///The type of the map that stores the last
|
alpar@1218
|
47 |
///edges of the %DFS paths.
|
alpar@1218
|
48 |
///It must meet the \ref concept::WriteMap "WriteMap" concept.
|
alpar@1218
|
49 |
///
|
alpar@1218
|
50 |
typedef typename Graph::template NodeMap<typename GR::Edge> PredMap;
|
alpar@1218
|
51 |
///Instantiates a PredMap.
|
alpar@1218
|
52 |
|
alpar@1218
|
53 |
///This function instantiates a \ref PredMap.
|
alpar@1218
|
54 |
///\param G is the graph, to which we would like to define the PredMap.
|
alpar@1218
|
55 |
///\todo The graph alone may be insufficient to initialize
|
alpar@1218
|
56 |
static PredMap *createPredMap(const GR &G)
|
alpar@1218
|
57 |
{
|
alpar@1218
|
58 |
return new PredMap(G);
|
alpar@1218
|
59 |
}
|
alpar@1218
|
60 |
// ///\brief The type of the map that stores the last but one
|
alpar@1218
|
61 |
// ///nodes of the %DFS paths.
|
alpar@1218
|
62 |
// ///
|
alpar@1218
|
63 |
// ///The type of the map that stores the last but one
|
alpar@1218
|
64 |
// ///nodes of the %DFS paths.
|
alpar@1218
|
65 |
// ///It must meet the \ref concept::WriteMap "WriteMap" concept.
|
alpar@1218
|
66 |
// ///
|
alpar@1218
|
67 |
// typedef NullMap<typename Graph::Node,typename Graph::Node> PredNodeMap;
|
alpar@1218
|
68 |
// ///Instantiates a PredNodeMap.
|
alpar@1218
|
69 |
|
alpar@1218
|
70 |
// ///This function instantiates a \ref PredNodeMap.
|
alpar@1218
|
71 |
// ///\param G is the graph, to which
|
alpar@1218
|
72 |
// ///we would like to define the \ref PredNodeMap
|
alpar@1218
|
73 |
// static PredNodeMap *createPredNodeMap(const GR &G)
|
alpar@1218
|
74 |
// {
|
alpar@1218
|
75 |
// return new PredNodeMap();
|
alpar@1218
|
76 |
// }
|
alpar@1218
|
77 |
|
alpar@1218
|
78 |
///The type of the map that indicates which nodes are processed.
|
alpar@1218
|
79 |
|
alpar@1218
|
80 |
///The type of the map that indicates which nodes are processed.
|
alpar@1218
|
81 |
///It must meet the \ref concept::WriteMap "WriteMap" concept.
|
alpar@1218
|
82 |
///\todo named parameter to set this type, function to read and write.
|
alpar@1218
|
83 |
typedef NullMap<typename Graph::Node,bool> ProcessedMap;
|
alpar@1218
|
84 |
///Instantiates a ProcessedMap.
|
alpar@1218
|
85 |
|
alpar@1218
|
86 |
///This function instantiates a \ref ProcessedMap.
|
alpar@1218
|
87 |
///\param G is the graph, to which
|
alpar@1218
|
88 |
///we would like to define the \ref ProcessedMap
|
alpar@1218
|
89 |
static ProcessedMap *createProcessedMap(const GR &G)
|
alpar@1218
|
90 |
{
|
alpar@1218
|
91 |
return new ProcessedMap();
|
alpar@1218
|
92 |
}
|
alpar@1218
|
93 |
///The type of the map that indicates which nodes are reached.
|
alpar@1218
|
94 |
|
alpar@1218
|
95 |
///The type of the map that indicates which nodes are reached.
|
alpar@1218
|
96 |
///It must meet the \ref concept::WriteMap "WriteMap" concept.
|
alpar@1218
|
97 |
///\todo named parameter to set this type, function to read and write.
|
alpar@1218
|
98 |
typedef typename Graph::template NodeMap<bool> ReachedMap;
|
alpar@1218
|
99 |
///Instantiates a ReachedMap.
|
alpar@1218
|
100 |
|
alpar@1218
|
101 |
///This function instantiates a \ref ReachedMap.
|
alpar@1218
|
102 |
///\param G is the graph, to which
|
alpar@1218
|
103 |
///we would like to define the \ref ReachedMap.
|
alpar@1218
|
104 |
static ReachedMap *createReachedMap(const GR &G)
|
alpar@1218
|
105 |
{
|
alpar@1218
|
106 |
return new ReachedMap(G);
|
alpar@1218
|
107 |
}
|
alpar@1218
|
108 |
///The type of the map that stores the dists of the nodes.
|
alpar@1218
|
109 |
|
alpar@1218
|
110 |
///The type of the map that stores the dists of the nodes.
|
alpar@1218
|
111 |
///It must meet the \ref concept::WriteMap "WriteMap" concept.
|
alpar@1218
|
112 |
///
|
alpar@1218
|
113 |
typedef typename Graph::template NodeMap<int> DistMap;
|
alpar@1218
|
114 |
///Instantiates a DistMap.
|
alpar@1218
|
115 |
|
alpar@1218
|
116 |
///This function instantiates a \ref DistMap.
|
alpar@1218
|
117 |
///\param G is the graph, to which we would like to define the \ref DistMap
|
alpar@1218
|
118 |
static DistMap *createDistMap(const GR &G)
|
alpar@1218
|
119 |
{
|
alpar@1218
|
120 |
return new DistMap(G);
|
alpar@1218
|
121 |
}
|
alpar@1218
|
122 |
};
|
alpar@1218
|
123 |
|
alpar@781
|
124 |
///%DFS algorithm class.
|
alpar@1218
|
125 |
|
alpar@1218
|
126 |
///\ingroup flowalgs
|
alpar@1218
|
127 |
///This class provides an efficient implementation of the %DFS algorithm.
|
alpar@780
|
128 |
///
|
alpar@1218
|
129 |
///\param GR The graph type the algorithm runs on. The default value is
|
alpar@1218
|
130 |
///\ref ListGraph. The value of GR is not used directly by Dfs, it
|
alpar@1218
|
131 |
///is only passed to \ref DfsDefaultTraits.
|
alpar@1218
|
132 |
///\param TR Traits class to set various data types used by the algorithm.
|
alpar@1218
|
133 |
///The default traits class is
|
alpar@1218
|
134 |
///\ref DfsDefaultTraits "DfsDefaultTraits<GR>".
|
alpar@1218
|
135 |
///See \ref DfsDefaultTraits for the documentation of
|
alpar@1218
|
136 |
///a Dfs traits class.
|
alpar@780
|
137 |
///
|
alpar@1218
|
138 |
///\author Jacint Szabo and Alpar Juttner
|
alpar@1218
|
139 |
///\todo A compare object would be nice.
|
alpar@780
|
140 |
|
alpar@780
|
141 |
#ifdef DOXYGEN
|
alpar@1218
|
142 |
template <typename GR,
|
alpar@1218
|
143 |
typename TR>
|
alpar@780
|
144 |
#else
|
alpar@1218
|
145 |
template <typename GR=ListGraph,
|
alpar@1218
|
146 |
typename TR=DfsDefaultTraits<GR> >
|
alpar@780
|
147 |
#endif
|
alpar@1218
|
148 |
class Dfs {
|
alpar@780
|
149 |
public:
|
alpar@1218
|
150 |
/**
|
alpar@1218
|
151 |
* \brief \ref Exception for uninitialized parameters.
|
alpar@1218
|
152 |
*
|
alpar@1218
|
153 |
* This error represents problems in the initialization
|
alpar@1218
|
154 |
* of the parameters of the algorithms.
|
alpar@1218
|
155 |
*/
|
alpar@1218
|
156 |
class UninitializedParameter : public lemon::UninitializedParameter {
|
alpar@1218
|
157 |
public:
|
alpar@1218
|
158 |
virtual const char* exceptionName() const {
|
alpar@1218
|
159 |
return "lemon::Dfs::UninitializedParameter";
|
alpar@1218
|
160 |
}
|
alpar@1218
|
161 |
};
|
alpar@1218
|
162 |
|
alpar@1218
|
163 |
typedef TR Traits;
|
alpar@780
|
164 |
///The type of the underlying graph.
|
alpar@1218
|
165 |
typedef typename TR::Graph Graph;
|
alpar@911
|
166 |
///\e
|
alpar@780
|
167 |
typedef typename Graph::Node Node;
|
alpar@911
|
168 |
///\e
|
alpar@780
|
169 |
typedef typename Graph::NodeIt NodeIt;
|
alpar@911
|
170 |
///\e
|
alpar@780
|
171 |
typedef typename Graph::Edge Edge;
|
alpar@911
|
172 |
///\e
|
alpar@780
|
173 |
typedef typename Graph::OutEdgeIt OutEdgeIt;
|
alpar@780
|
174 |
|
alpar@780
|
175 |
///\brief The type of the map that stores the last
|
alpar@1218
|
176 |
///edges of the %DFS paths.
|
alpar@1218
|
177 |
typedef typename TR::PredMap PredMap;
|
alpar@1218
|
178 |
// ///\brief The type of the map that stores the last but one
|
alpar@1218
|
179 |
// ///nodes of the %DFS paths.
|
alpar@1218
|
180 |
// typedef typename TR::PredNodeMap PredNodeMap;
|
alpar@1218
|
181 |
///The type of the map indicating which nodes are reached.
|
alpar@1218
|
182 |
typedef typename TR::ReachedMap ReachedMap;
|
alpar@1218
|
183 |
///The type of the map indicating which nodes are processed.
|
alpar@1218
|
184 |
typedef typename TR::ProcessedMap ProcessedMap;
|
alpar@1218
|
185 |
///The type of the map that stores the dists of the nodes.
|
alpar@1218
|
186 |
typedef typename TR::DistMap DistMap;
|
alpar@780
|
187 |
private:
|
alpar@802
|
188 |
/// Pointer to the underlying graph.
|
alpar@780
|
189 |
const Graph *G;
|
alpar@802
|
190 |
///Pointer to the map of predecessors edges.
|
alpar@1218
|
191 |
PredMap *_pred;
|
alpar@1218
|
192 |
///Indicates if \ref _pred is locally allocated (\c true) or not.
|
alpar@1218
|
193 |
bool local_pred;
|
alpar@1218
|
194 |
// ///Pointer to the map of predecessors nodes.
|
alpar@1218
|
195 |
// PredNodeMap *_predNode;
|
alpar@1218
|
196 |
// ///Indicates if \ref _predNode is locally allocated (\c true) or not.
|
alpar@1218
|
197 |
// bool local_predNode;
|
alpar@802
|
198 |
///Pointer to the map of distances.
|
alpar@1218
|
199 |
DistMap *_dist;
|
alpar@1218
|
200 |
///Indicates if \ref _dist is locally allocated (\c true) or not.
|
alpar@1218
|
201 |
bool local_dist;
|
alpar@1218
|
202 |
///Pointer to the map of reached status of the nodes.
|
alpar@1218
|
203 |
ReachedMap *_reached;
|
alpar@1218
|
204 |
///Indicates if \ref _reached is locally allocated (\c true) or not.
|
alpar@1218
|
205 |
bool local_reached;
|
alpar@1218
|
206 |
///Pointer to the map of processed status of the nodes.
|
alpar@1218
|
207 |
ProcessedMap *_processed;
|
alpar@1218
|
208 |
///Indicates if \ref _processed is locally allocated (\c true) or not.
|
alpar@1218
|
209 |
bool local_processed;
|
alpar@780
|
210 |
|
alpar@1218
|
211 |
std::vector<typename Graph::OutEdgeIt> _stack;
|
alpar@1218
|
212 |
int _stack_head;
|
alpar@1218
|
213 |
// ///The source node of the last execution.
|
alpar@1218
|
214 |
// Node source;
|
alpar@780
|
215 |
|
alpar@1218
|
216 |
///Creates the maps if necessary.
|
alpar@1218
|
217 |
|
alpar@1218
|
218 |
///\todo Error if \c G are \c NULL.
|
alpar@1218
|
219 |
///\todo Better memory allocation (instead of new).
|
alpar@1218
|
220 |
void create_maps()
|
alpar@780
|
221 |
{
|
alpar@1218
|
222 |
if(!_pred) {
|
alpar@1218
|
223 |
local_pred = true;
|
alpar@1218
|
224 |
_pred = Traits::createPredMap(*G);
|
alpar@780
|
225 |
}
|
alpar@1218
|
226 |
// if(!_predNode) {
|
alpar@1218
|
227 |
// local_predNode = true;
|
alpar@1218
|
228 |
// _predNode = Traits::createPredNodeMap(*G);
|
alpar@1218
|
229 |
// }
|
alpar@1218
|
230 |
if(!_dist) {
|
alpar@1218
|
231 |
local_dist = true;
|
alpar@1218
|
232 |
_dist = Traits::createDistMap(*G);
|
alpar@780
|
233 |
}
|
alpar@1218
|
234 |
if(!_reached) {
|
alpar@1218
|
235 |
local_reached = true;
|
alpar@1218
|
236 |
_reached = Traits::createReachedMap(*G);
|
alpar@1218
|
237 |
}
|
alpar@1218
|
238 |
if(!_processed) {
|
alpar@1218
|
239 |
local_processed = true;
|
alpar@1218
|
240 |
_processed = Traits::createProcessedMap(*G);
|
alpar@780
|
241 |
}
|
alpar@780
|
242 |
}
|
alpar@780
|
243 |
|
alpar@1218
|
244 |
public :
|
alpar@1218
|
245 |
|
alpar@1218
|
246 |
///\name Named template parameters
|
alpar@1218
|
247 |
|
alpar@1218
|
248 |
///@{
|
alpar@1218
|
249 |
|
alpar@1218
|
250 |
template <class T>
|
alpar@1218
|
251 |
struct DefPredMapTraits : public Traits {
|
alpar@1218
|
252 |
typedef T PredMap;
|
alpar@1218
|
253 |
static PredMap *createPredMap(const Graph &G)
|
alpar@1218
|
254 |
{
|
alpar@1218
|
255 |
throw UninitializedParameter();
|
alpar@1218
|
256 |
}
|
alpar@1218
|
257 |
};
|
alpar@1218
|
258 |
///\ref named-templ-param "Named parameter" for setting PredMap type
|
alpar@1218
|
259 |
|
alpar@1218
|
260 |
///\ref named-templ-param "Named parameter" for setting PredMap type
|
alpar@1218
|
261 |
///
|
alpar@1218
|
262 |
template <class T>
|
alpar@1218
|
263 |
class DefPredMap : public Dfs< Graph,
|
alpar@1218
|
264 |
DefPredMapTraits<T> > { };
|
alpar@1218
|
265 |
|
alpar@1218
|
266 |
// template <class T>
|
alpar@1218
|
267 |
// struct DefPredNodeMapTraits : public Traits {
|
alpar@1218
|
268 |
// typedef T PredNodeMap;
|
alpar@1218
|
269 |
// static PredNodeMap *createPredNodeMap(const Graph &G)
|
alpar@1218
|
270 |
// {
|
alpar@1218
|
271 |
// throw UninitializedParameter();
|
alpar@1218
|
272 |
// }
|
alpar@1218
|
273 |
// };
|
alpar@1218
|
274 |
// ///\ref named-templ-param "Named parameter" for setting PredNodeMap type
|
alpar@1218
|
275 |
|
alpar@1218
|
276 |
// ///\ref named-templ-param "Named parameter" for setting PredNodeMap type
|
alpar@1218
|
277 |
// ///
|
alpar@1218
|
278 |
// template <class T>
|
alpar@1218
|
279 |
// class DefPredNodeMap : public Dfs< Graph,
|
alpar@1218
|
280 |
// LengthMap,
|
alpar@1218
|
281 |
// DefPredNodeMapTraits<T> > { };
|
alpar@1218
|
282 |
|
alpar@1218
|
283 |
template <class T>
|
alpar@1218
|
284 |
struct DefDistMapTraits : public Traits {
|
alpar@1218
|
285 |
typedef T DistMap;
|
alpar@1218
|
286 |
static DistMap *createDistMap(const Graph &G)
|
alpar@1218
|
287 |
{
|
alpar@1218
|
288 |
throw UninitializedParameter();
|
alpar@1218
|
289 |
}
|
alpar@1218
|
290 |
};
|
alpar@1218
|
291 |
///\ref named-templ-param "Named parameter" for setting DistMap type
|
alpar@1218
|
292 |
|
alpar@1218
|
293 |
///\ref named-templ-param "Named parameter" for setting DistMap type
|
alpar@1218
|
294 |
///
|
alpar@1218
|
295 |
template <class T>
|
alpar@1218
|
296 |
class DefDistMap : public Dfs< Graph,
|
alpar@1218
|
297 |
DefDistMapTraits<T> > { };
|
alpar@1218
|
298 |
|
alpar@1218
|
299 |
template <class T>
|
alpar@1218
|
300 |
struct DefReachedMapTraits : public Traits {
|
alpar@1218
|
301 |
typedef T ReachedMap;
|
alpar@1218
|
302 |
static ReachedMap *createReachedMap(const Graph &G)
|
alpar@1218
|
303 |
{
|
alpar@1218
|
304 |
throw UninitializedParameter();
|
alpar@1218
|
305 |
}
|
alpar@1218
|
306 |
};
|
alpar@1218
|
307 |
///\ref named-templ-param "Named parameter" for setting ReachedMap type
|
alpar@1218
|
308 |
|
alpar@1218
|
309 |
///\ref named-templ-param "Named parameter" for setting ReachedMap type
|
alpar@1218
|
310 |
///
|
alpar@1218
|
311 |
template <class T>
|
alpar@1218
|
312 |
class DefReachedMap : public Dfs< Graph,
|
alpar@1218
|
313 |
DefReachedMapTraits<T> > { };
|
alpar@1218
|
314 |
|
alpar@1218
|
315 |
struct DefGraphReachedMapTraits : public Traits {
|
alpar@1218
|
316 |
typedef typename Graph::template NodeMap<bool> ReachedMap;
|
alpar@1218
|
317 |
static ReachedMap *createReachedMap(const Graph &G)
|
alpar@1218
|
318 |
{
|
alpar@1218
|
319 |
return new ReachedMap(G);
|
alpar@1218
|
320 |
}
|
alpar@1218
|
321 |
};
|
alpar@1218
|
322 |
template <class T>
|
alpar@1218
|
323 |
struct DefProcessedMapTraits : public Traits {
|
alpar@1218
|
324 |
typedef T ProcessedMap;
|
alpar@1218
|
325 |
static ProcessedMap *createProcessedMap(const Graph &G)
|
alpar@1218
|
326 |
{
|
alpar@1218
|
327 |
throw UninitializedParameter();
|
alpar@1218
|
328 |
}
|
alpar@1218
|
329 |
};
|
alpar@1218
|
330 |
///\ref named-templ-param "Named parameter" for setting ProcessedMap type
|
alpar@1218
|
331 |
|
alpar@1218
|
332 |
///\ref named-templ-param "Named parameter" for setting ProcessedMap type
|
alpar@1218
|
333 |
///
|
alpar@1218
|
334 |
template <class T>
|
alpar@1218
|
335 |
class DefProcessedMap : public Dfs< Graph,
|
alpar@1218
|
336 |
DefProcessedMapTraits<T> > { };
|
alpar@1218
|
337 |
|
alpar@1218
|
338 |
struct DefGraphProcessedMapTraits : public Traits {
|
alpar@1218
|
339 |
typedef typename Graph::template NodeMap<bool> ProcessedMap;
|
alpar@1218
|
340 |
static ProcessedMap *createProcessedMap(const Graph &G)
|
alpar@1218
|
341 |
{
|
alpar@1218
|
342 |
return new ProcessedMap(G);
|
alpar@1218
|
343 |
}
|
alpar@1218
|
344 |
};
|
alpar@1218
|
345 |
///\brief \ref named-templ-param "Named parameter"
|
alpar@1218
|
346 |
///for setting the ProcessedMap type to be Graph::NodeMap<bool>.
|
alpar@1218
|
347 |
///
|
alpar@1218
|
348 |
///\ref named-templ-param "Named parameter"
|
alpar@1218
|
349 |
///for setting the ProcessedMap type to be Graph::NodeMap<bool>.
|
alpar@1218
|
350 |
///If you don't set it explicitely, it will be automatically allocated.
|
alpar@1218
|
351 |
template <class T>
|
alpar@1218
|
352 |
class DefProcessedMapToBeDefaultMap :
|
alpar@1218
|
353 |
public Dfs< Graph,
|
alpar@1218
|
354 |
DefGraphProcessedMapTraits> { };
|
alpar@1218
|
355 |
|
alpar@1218
|
356 |
///@}
|
alpar@1218
|
357 |
|
alpar@1218
|
358 |
public:
|
alpar@1218
|
359 |
|
alpar@802
|
360 |
///Constructor.
|
alpar@802
|
361 |
|
alpar@802
|
362 |
///\param _G the graph the algorithm will run on.
|
alpar@911
|
363 |
///
|
alpar@780
|
364 |
Dfs(const Graph& _G) :
|
alpar@780
|
365 |
G(&_G),
|
alpar@1218
|
366 |
_pred(NULL), local_pred(false),
|
alpar@1218
|
367 |
// _predNode(NULL), local_predNode(false),
|
alpar@1218
|
368 |
_dist(NULL), local_dist(false),
|
alpar@1218
|
369 |
_reached(NULL), local_reached(false),
|
alpar@1218
|
370 |
_processed(NULL), local_processed(false)
|
alpar@780
|
371 |
{ }
|
alpar@780
|
372 |
|
alpar@802
|
373 |
///Destructor.
|
alpar@780
|
374 |
~Dfs()
|
alpar@780
|
375 |
{
|
alpar@1218
|
376 |
if(local_pred) delete _pred;
|
alpar@1218
|
377 |
// if(local_predNode) delete _predNode;
|
alpar@1218
|
378 |
if(local_dist) delete _dist;
|
alpar@1218
|
379 |
if(local_reached) delete _reached;
|
alpar@1218
|
380 |
if(local_processed) delete _processed;
|
alpar@780
|
381 |
}
|
alpar@780
|
382 |
|
alpar@780
|
383 |
///Sets the map storing the predecessor edges.
|
alpar@780
|
384 |
|
alpar@780
|
385 |
///Sets the map storing the predecessor edges.
|
alpar@780
|
386 |
///If you don't use this function before calling \ref run(),
|
alpar@780
|
387 |
///it will allocate one. The destuctor deallocates this
|
alpar@780
|
388 |
///automatically allocated map, of course.
|
alpar@780
|
389 |
///\return <tt> (*this) </tt>
|
alpar@1218
|
390 |
Dfs &predMap(PredMap &m)
|
alpar@780
|
391 |
{
|
alpar@1218
|
392 |
if(local_pred) {
|
alpar@1218
|
393 |
delete _pred;
|
alpar@1218
|
394 |
local_pred=false;
|
alpar@780
|
395 |
}
|
alpar@1218
|
396 |
_pred = &m;
|
alpar@780
|
397 |
return *this;
|
alpar@780
|
398 |
}
|
alpar@780
|
399 |
|
alpar@1218
|
400 |
// ///Sets the map storing the predecessor nodes.
|
alpar@780
|
401 |
|
alpar@1218
|
402 |
// ///Sets the map storing the predecessor nodes.
|
alpar@1218
|
403 |
// ///If you don't use this function before calling \ref run(),
|
alpar@1218
|
404 |
// ///it will allocate one. The destuctor deallocates this
|
alpar@1218
|
405 |
// ///automatically allocated map, of course.
|
alpar@1218
|
406 |
// ///\return <tt> (*this) </tt>
|
alpar@1218
|
407 |
// Dfs &predNodeMap(PredNodeMap &m)
|
alpar@1218
|
408 |
// {
|
alpar@1218
|
409 |
// if(local_predNode) {
|
alpar@1218
|
410 |
// delete _predNode;
|
alpar@1218
|
411 |
// local_predNode=false;
|
alpar@1218
|
412 |
// }
|
alpar@1218
|
413 |
// _predNode = &m;
|
alpar@1218
|
414 |
// return *this;
|
alpar@1218
|
415 |
// }
|
alpar@780
|
416 |
|
alpar@780
|
417 |
///Sets the map storing the distances calculated by the algorithm.
|
alpar@780
|
418 |
|
alpar@780
|
419 |
///Sets the map storing the distances calculated by the algorithm.
|
alpar@780
|
420 |
///If you don't use this function before calling \ref run(),
|
alpar@780
|
421 |
///it will allocate one. The destuctor deallocates this
|
alpar@780
|
422 |
///automatically allocated map, of course.
|
alpar@780
|
423 |
///\return <tt> (*this) </tt>
|
alpar@1218
|
424 |
Dfs &distMap(DistMap &m)
|
alpar@780
|
425 |
{
|
alpar@1218
|
426 |
if(local_dist) {
|
alpar@1218
|
427 |
delete _dist;
|
alpar@1218
|
428 |
local_dist=false;
|
alpar@780
|
429 |
}
|
alpar@1218
|
430 |
_dist = &m;
|
alpar@780
|
431 |
return *this;
|
alpar@780
|
432 |
}
|
alpar@780
|
433 |
|
alpar@1220
|
434 |
///Sets the map indicating if a node is reached.
|
alpar@1220
|
435 |
|
alpar@1220
|
436 |
///Sets the map indicating if a node is reached.
|
alpar@1220
|
437 |
///If you don't use this function before calling \ref run(),
|
alpar@1220
|
438 |
///it will allocate one. The destuctor deallocates this
|
alpar@1220
|
439 |
///automatically allocated map, of course.
|
alpar@1220
|
440 |
///\return <tt> (*this) </tt>
|
alpar@1220
|
441 |
Dfs &reachedMap(ReachedMap &m)
|
alpar@1220
|
442 |
{
|
alpar@1220
|
443 |
if(local_reached) {
|
alpar@1220
|
444 |
delete _reached;
|
alpar@1220
|
445 |
local_reached=false;
|
alpar@1220
|
446 |
}
|
alpar@1220
|
447 |
_reached = &m;
|
alpar@1220
|
448 |
return *this;
|
alpar@1220
|
449 |
}
|
alpar@1220
|
450 |
|
alpar@1220
|
451 |
///Sets the map indicating if a node is processed.
|
alpar@1220
|
452 |
|
alpar@1220
|
453 |
///Sets the map indicating if a node is processed.
|
alpar@1220
|
454 |
///If you don't use this function before calling \ref run(),
|
alpar@1220
|
455 |
///it will allocate one. The destuctor deallocates this
|
alpar@1220
|
456 |
///automatically allocated map, of course.
|
alpar@1220
|
457 |
///\return <tt> (*this) </tt>
|
alpar@1220
|
458 |
Dfs &processedMap(ProcessedMap &m)
|
alpar@1220
|
459 |
{
|
alpar@1220
|
460 |
if(local_processed) {
|
alpar@1220
|
461 |
delete _processed;
|
alpar@1220
|
462 |
local_processed=false;
|
alpar@1220
|
463 |
}
|
alpar@1220
|
464 |
_processed = &m;
|
alpar@1220
|
465 |
return *this;
|
alpar@1220
|
466 |
}
|
alpar@1220
|
467 |
|
alpar@1218
|
468 |
public:
|
alpar@1218
|
469 |
///\name Execution control
|
alpar@1218
|
470 |
///The simplest way to execute the algorithm is to use
|
alpar@1218
|
471 |
///one of the member functions called \c run(...).
|
alpar@1218
|
472 |
///\n
|
alpar@1218
|
473 |
///If you need more control on the execution,
|
alpar@1218
|
474 |
///first you must call \ref init(), then you can add several source nodes
|
alpar@1218
|
475 |
///with \ref addSource().
|
alpar@1218
|
476 |
///Finally \ref start() will perform the actual path
|
alpar@1218
|
477 |
///computation.
|
alpar@1218
|
478 |
|
alpar@1218
|
479 |
///@{
|
alpar@1218
|
480 |
|
alpar@1218
|
481 |
///Initializes the internal data structures.
|
alpar@1218
|
482 |
|
alpar@1218
|
483 |
///Initializes the internal data structures.
|
alpar@1218
|
484 |
///
|
alpar@1218
|
485 |
void init()
|
alpar@1218
|
486 |
{
|
alpar@1218
|
487 |
create_maps();
|
alpar@1218
|
488 |
_stack.resize(countNodes(*G));
|
alpar@1218
|
489 |
_stack_head=-1;
|
alpar@780
|
490 |
for ( NodeIt u(*G) ; u!=INVALID ; ++u ) {
|
alpar@1218
|
491 |
_pred->set(u,INVALID);
|
alpar@1218
|
492 |
// _predNode->set(u,INVALID);
|
alpar@1218
|
493 |
_reached->set(u,false);
|
alpar@1218
|
494 |
_processed->set(u,false);
|
alpar@780
|
495 |
}
|
alpar@780
|
496 |
}
|
alpar@780
|
497 |
|
alpar@1218
|
498 |
///Adds a new source node.
|
alpar@780
|
499 |
|
alpar@1218
|
500 |
///Adds a new source node to the set of nodes to be processed.
|
alpar@1218
|
501 |
///
|
alpar@1218
|
502 |
///\bug dist's are wrong (or at least strange) in case of multiple sources.
|
alpar@1218
|
503 |
void addSource(Node s)
|
alpar@1218
|
504 |
{
|
alpar@1218
|
505 |
if(!(*_reached)[s])
|
alpar@1218
|
506 |
{
|
alpar@1218
|
507 |
_reached->set(s,true);
|
alpar@1218
|
508 |
_pred->set(s,INVALID);
|
alpar@1218
|
509 |
// _predNode->set(u,INVALID);
|
alpar@1218
|
510 |
_stack[++_stack_head]=OutEdgeIt(*G,s);
|
alpar@1218
|
511 |
_dist->set(s,_stack_head);
|
alpar@1218
|
512 |
}
|
alpar@1218
|
513 |
}
|
alpar@1218
|
514 |
|
alpar@1218
|
515 |
///Processes the next node.
|
alpar@1218
|
516 |
|
alpar@1218
|
517 |
///Processes the next node.
|
alpar@1218
|
518 |
///
|
alpar@1218
|
519 |
///\warning The stack must not be empty!
|
alpar@1218
|
520 |
void processNextEdge()
|
alpar@1218
|
521 |
{
|
alpar@1218
|
522 |
Node m;
|
alpar@1218
|
523 |
Edge e=_stack[_stack_head];
|
alpar@1218
|
524 |
if(!(*_reached)[m=G->target(e)]) {
|
alpar@1218
|
525 |
_pred->set(m,e);
|
alpar@1218
|
526 |
_reached->set(m,true);
|
alpar@1218
|
527 |
// _pred_node->set(m,G->source(e));
|
alpar@1233
|
528 |
++_stack_head;
|
alpar@1233
|
529 |
_stack[_stack_head] = OutEdgeIt(*G, m);
|
alpar@1218
|
530 |
_dist->set(m,_stack_head);
|
alpar@1218
|
531 |
}
|
alpar@1218
|
532 |
else {
|
alpar@1218
|
533 |
Node n;
|
alpar@1218
|
534 |
while(_stack_head>=0 &&
|
alpar@1218
|
535 |
(n=G->source(_stack[_stack_head]),
|
alpar@1218
|
536 |
++_stack[_stack_head]==INVALID))
|
alpar@1218
|
537 |
{
|
alpar@1218
|
538 |
_processed->set(n,true);
|
alpar@1218
|
539 |
--_stack_head;
|
alpar@1218
|
540 |
}
|
alpar@1218
|
541 |
}
|
alpar@1218
|
542 |
}
|
alpar@1218
|
543 |
|
alpar@1218
|
544 |
///\brief Returns \c false if there are nodes
|
alpar@1218
|
545 |
///to be processed in the queue
|
alpar@1218
|
546 |
///
|
alpar@1218
|
547 |
///Returns \c false if there are nodes
|
alpar@1218
|
548 |
///to be processed in the queue
|
alpar@1218
|
549 |
bool emptyQueue() { return _stack_head<0; }
|
alpar@1218
|
550 |
///Returns the number of the nodes to be processed.
|
alpar@1218
|
551 |
|
alpar@1218
|
552 |
///Returns the number of the nodes to be processed in the queue.
|
alpar@1218
|
553 |
///
|
alpar@1218
|
554 |
int queueSize() { return _stack_head+1; }
|
alpar@1218
|
555 |
|
alpar@1218
|
556 |
///Executes the algorithm.
|
alpar@1218
|
557 |
|
alpar@1218
|
558 |
///Executes the algorithm.
|
alpar@1218
|
559 |
///
|
alpar@1218
|
560 |
///\pre init() must be called and at least one node should be added
|
alpar@1218
|
561 |
///with addSource() before using this function.
|
alpar@1218
|
562 |
///
|
alpar@1218
|
563 |
///This method runs the %DFS algorithm from the root node(s)
|
alpar@1218
|
564 |
///in order to
|
alpar@1218
|
565 |
///compute the
|
alpar@1218
|
566 |
///%DFS path to each node. The algorithm computes
|
alpar@1218
|
567 |
///- The %DFS tree.
|
alpar@1218
|
568 |
///- The distance of each node from the root(s).
|
alpar@1218
|
569 |
///
|
alpar@1218
|
570 |
void start()
|
alpar@1218
|
571 |
{
|
alpar@1218
|
572 |
while ( !emptyQueue() ) processNextEdge();
|
alpar@1218
|
573 |
}
|
alpar@1218
|
574 |
|
alpar@1218
|
575 |
///Executes the algorithm until \c dest is reached.
|
alpar@1218
|
576 |
|
alpar@1218
|
577 |
///Executes the algorithm until \c dest is reached.
|
alpar@1218
|
578 |
///
|
alpar@1218
|
579 |
///\pre init() must be called and at least one node should be added
|
alpar@1218
|
580 |
///with addSource() before using this function.
|
alpar@1218
|
581 |
///
|
alpar@1218
|
582 |
///This method runs the %DFS algorithm from the root node(s)
|
alpar@1218
|
583 |
///in order to
|
alpar@1218
|
584 |
///compute the
|
alpar@1218
|
585 |
///%DFS path to \c dest. The algorithm computes
|
alpar@1218
|
586 |
///- The %DFS path to \c dest.
|
alpar@1218
|
587 |
///- The distance of \c dest from the root(s).
|
alpar@1218
|
588 |
///
|
alpar@1218
|
589 |
void start(Node dest)
|
alpar@1218
|
590 |
{
|
alpar@1233
|
591 |
while ( !emptyQueue() && G->target(_stack[_stack_head])!=dest )
|
alpar@1233
|
592 |
processNextEdge();
|
alpar@1218
|
593 |
}
|
alpar@1218
|
594 |
|
alpar@1218
|
595 |
///Executes the algorithm until a condition is met.
|
alpar@1218
|
596 |
|
alpar@1218
|
597 |
///Executes the algorithm until a condition is met.
|
alpar@1218
|
598 |
///
|
alpar@1218
|
599 |
///\pre init() must be called and at least one node should be added
|
alpar@1218
|
600 |
///with addSource() before using this function.
|
alpar@1218
|
601 |
///
|
alpar@1233
|
602 |
///\param nm must be a bool (or convertible) edge map. The algorithm
|
alpar@1233
|
603 |
///will stop when it reaches a edge \c v with <tt>nm[v]==true</tt>.
|
alpar@1233
|
604 |
///\warning Contrary to \ref Dfs and \ref Dijkstra, \c mn is an edge map,
|
alpar@1233
|
605 |
///not a node map.
|
alpar@1218
|
606 |
template<class NM>
|
alpar@1218
|
607 |
void start(const NM &nm)
|
alpar@1218
|
608 |
{
|
alpar@1233
|
609 |
while ( !emptyQueue() && !nm[_stack[_stack_head]] ) processNextEdge();
|
alpar@1218
|
610 |
}
|
alpar@1218
|
611 |
|
alpar@1218
|
612 |
///Runs %DFS algorithm from node \c s.
|
alpar@1218
|
613 |
|
alpar@1218
|
614 |
///This method runs the %DFS algorithm from a root node \c s
|
alpar@1218
|
615 |
///in order to
|
alpar@1218
|
616 |
///compute the
|
alpar@1218
|
617 |
///%DFS path to each node. The algorithm computes
|
alpar@1218
|
618 |
///- The %DFS tree.
|
alpar@1218
|
619 |
///- The distance of each node from the root.
|
alpar@1218
|
620 |
///
|
alpar@1218
|
621 |
///\note d.run(s) is just a shortcut of the following code.
|
alpar@1218
|
622 |
///\code
|
alpar@1218
|
623 |
/// d.init();
|
alpar@1218
|
624 |
/// d.addSource(s);
|
alpar@1218
|
625 |
/// d.start();
|
alpar@1218
|
626 |
///\endcode
|
alpar@1218
|
627 |
void run(Node s) {
|
alpar@1218
|
628 |
init();
|
alpar@1218
|
629 |
addSource(s);
|
alpar@1218
|
630 |
start();
|
alpar@1218
|
631 |
}
|
alpar@1218
|
632 |
|
alpar@1218
|
633 |
///Finds the %DFS path between \c s and \c t.
|
alpar@1218
|
634 |
|
alpar@1218
|
635 |
///Finds the %DFS path between \c s and \c t.
|
alpar@1218
|
636 |
///
|
alpar@1218
|
637 |
///\return The length of the %DFS s---t path if there exists one,
|
alpar@1218
|
638 |
///0 otherwise.
|
alpar@1218
|
639 |
///\note Apart from the return value, d.run(s) is
|
alpar@1218
|
640 |
///just a shortcut of the following code.
|
alpar@1218
|
641 |
///\code
|
alpar@1218
|
642 |
/// d.init();
|
alpar@1218
|
643 |
/// d.addSource(s);
|
alpar@1218
|
644 |
/// d.start(t);
|
alpar@1218
|
645 |
///\endcode
|
alpar@1218
|
646 |
int run(Node s,Node t) {
|
alpar@1218
|
647 |
init();
|
alpar@1218
|
648 |
addSource(s);
|
alpar@1218
|
649 |
start(t);
|
alpar@1233
|
650 |
return reached(t)?_stack_head+1:0;
|
alpar@1218
|
651 |
}
|
alpar@1218
|
652 |
|
alpar@1218
|
653 |
///@}
|
alpar@1218
|
654 |
|
alpar@1218
|
655 |
///\name Query Functions
|
alpar@1218
|
656 |
///The result of the %DFS algorithm can be obtained using these
|
alpar@1218
|
657 |
///functions.\n
|
alpar@1218
|
658 |
///Before the use of these functions,
|
alpar@1218
|
659 |
///either run() or start() must be called.
|
alpar@1218
|
660 |
|
alpar@1218
|
661 |
///@{
|
alpar@1218
|
662 |
|
alpar@1218
|
663 |
///The distance of a node from the root(s).
|
alpar@1218
|
664 |
|
alpar@1218
|
665 |
///Returns the distance of a node from the root(s).
|
alpar@780
|
666 |
///\pre \ref run() must be called before using this function.
|
alpar@1218
|
667 |
///\warning If node \c v in unreachable from the root(s) the return value
|
alpar@780
|
668 |
///of this funcion is undefined.
|
alpar@1218
|
669 |
int dist(Node v) const { return (*_dist)[v]; }
|
alpar@780
|
670 |
|
alpar@1218
|
671 |
///Returns the 'previous edge' of the %DFS tree.
|
alpar@780
|
672 |
|
alpar@1218
|
673 |
///For a node \c v it returns the 'previous edge'
|
alpar@1218
|
674 |
///of the %DFS path,
|
alpar@1218
|
675 |
///i.e. it returns the last edge of a %DFS path from the root(s) to \c
|
alpar@780
|
676 |
///v. It is \ref INVALID
|
alpar@1218
|
677 |
///if \c v is unreachable from the root(s) or \c v is a root. The
|
alpar@781
|
678 |
///%DFS tree used here is equal to the %DFS tree used in
|
alpar@1218
|
679 |
///\ref predNode(Node v).
|
alpar@1218
|
680 |
///\pre Either \ref run() or \ref start() must be called before using
|
alpar@780
|
681 |
///this function.
|
alpar@1218
|
682 |
///\todo predEdge could be a better name.
|
alpar@1218
|
683 |
Edge pred(Node v) const { return (*_pred)[v];}
|
alpar@780
|
684 |
|
alpar@781
|
685 |
///Returns the 'previous node' of the %DFS tree.
|
alpar@780
|
686 |
|
alpar@1218
|
687 |
///For a node \c v it returns the 'previous node'
|
alpar@1218
|
688 |
///of the %DFS tree,
|
alpar@1218
|
689 |
///i.e. it returns the last but one node from a %DFS path from the
|
alpar@1218
|
690 |
///root(a) to \c /v.
|
alpar@1218
|
691 |
///It is INVALID if \c v is unreachable from the root(s) or
|
alpar@1218
|
692 |
///if \c v itself a root.
|
alpar@1218
|
693 |
///The %DFS tree used here is equal to the %DFS
|
alpar@1218
|
694 |
///tree used in \ref pred(Node v).
|
alpar@1218
|
695 |
///\pre Either \ref run() or \ref start() must be called before
|
alpar@780
|
696 |
///using this function.
|
alpar@1218
|
697 |
Node predNode(Node v) const { return (*_pred)[v]==INVALID ? INVALID:
|
alpar@1218
|
698 |
G->source((*_pred)[v]); }
|
alpar@780
|
699 |
|
alpar@1218
|
700 |
///Returns a reference to the NodeMap of distances.
|
alpar@1218
|
701 |
|
alpar@1218
|
702 |
///Returns a reference to the NodeMap of distances.
|
alpar@1218
|
703 |
///\pre Either \ref run() or \ref init() must
|
alpar@780
|
704 |
///be called before using this function.
|
alpar@1218
|
705 |
const DistMap &distMap() const { return *_dist;}
|
alpar@780
|
706 |
|
alpar@1218
|
707 |
///Returns a reference to the %DFS edge-tree map.
|
alpar@780
|
708 |
|
alpar@780
|
709 |
///Returns a reference to the NodeMap of the edges of the
|
alpar@781
|
710 |
///%DFS tree.
|
alpar@1218
|
711 |
///\pre Either \ref run() or \ref init()
|
alpar@1218
|
712 |
///must be called before using this function.
|
alpar@1218
|
713 |
const PredMap &predMap() const { return *_pred;}
|
alpar@780
|
714 |
|
alpar@1218
|
715 |
// ///Returns a reference to the map of nodes of %DFS paths.
|
alpar@780
|
716 |
|
alpar@1218
|
717 |
// ///Returns a reference to the NodeMap of the last but one nodes of the
|
alpar@1218
|
718 |
// ///%DFS tree.
|
alpar@1218
|
719 |
// ///\pre \ref run() must be called before using this function.
|
alpar@1218
|
720 |
// const PredNodeMap &predNodeMap() const { return *_predNode;}
|
alpar@780
|
721 |
|
alpar@780
|
722 |
///Checks if a node is reachable from the root.
|
alpar@780
|
723 |
|
alpar@780
|
724 |
///Returns \c true if \c v is reachable from the root.
|
alpar@1218
|
725 |
///\warning The source nodes are inditated as unreached.
|
alpar@1218
|
726 |
///\pre Either \ref run() or \ref start()
|
alpar@1218
|
727 |
///must be called before using this function.
|
alpar@780
|
728 |
///
|
alpar@1218
|
729 |
bool reached(Node v) { return (*_reached)[v]; }
|
alpar@1218
|
730 |
|
alpar@1218
|
731 |
///@}
|
alpar@1218
|
732 |
};
|
alpar@1218
|
733 |
|
alpar@1218
|
734 |
///Default traits class of Dfs function.
|
alpar@1218
|
735 |
|
alpar@1218
|
736 |
///Default traits class of Dfs function.
|
alpar@1218
|
737 |
///\param GR Graph type.
|
alpar@1218
|
738 |
template<class GR>
|
alpar@1218
|
739 |
struct DfsWizardDefaultTraits
|
alpar@1218
|
740 |
{
|
alpar@1218
|
741 |
///The graph type the algorithm runs on.
|
alpar@1218
|
742 |
typedef GR Graph;
|
alpar@1218
|
743 |
///\brief The type of the map that stores the last
|
alpar@1218
|
744 |
///edges of the %DFS paths.
|
alpar@1218
|
745 |
///
|
alpar@1218
|
746 |
///The type of the map that stores the last
|
alpar@1218
|
747 |
///edges of the %DFS paths.
|
alpar@1218
|
748 |
///It must meet the \ref concept::WriteMap "WriteMap" concept.
|
alpar@780
|
749 |
///
|
alpar@1218
|
750 |
typedef NullMap<typename Graph::Node,typename GR::Edge> PredMap;
|
alpar@1218
|
751 |
///Instantiates a PredMap.
|
alpar@1218
|
752 |
|
alpar@1218
|
753 |
///This function instantiates a \ref PredMap.
|
alpar@1218
|
754 |
///\param G is the graph, to which we would like to define the PredMap.
|
alpar@1218
|
755 |
///\todo The graph alone may be insufficient to initialize
|
alpar@1218
|
756 |
static PredMap *createPredMap(const GR &G)
|
alpar@1218
|
757 |
{
|
alpar@1218
|
758 |
return new PredMap();
|
alpar@1218
|
759 |
}
|
alpar@1218
|
760 |
// ///\brief The type of the map that stores the last but one
|
alpar@1218
|
761 |
// ///nodes of the %DFS paths.
|
alpar@1218
|
762 |
// ///
|
alpar@1218
|
763 |
// ///The type of the map that stores the last but one
|
alpar@1218
|
764 |
// ///nodes of the %DFS paths.
|
alpar@1218
|
765 |
// ///It must meet the \ref concept::WriteMap "WriteMap" concept.
|
alpar@1218
|
766 |
// ///
|
alpar@1218
|
767 |
// typedef NullMap<typename Graph::Node,typename Graph::Node> PredNodeMap;
|
alpar@1218
|
768 |
// ///Instantiates a PredNodeMap.
|
alpar@1218
|
769 |
|
alpar@1218
|
770 |
// ///This function instantiates a \ref PredNodeMap.
|
alpar@1218
|
771 |
// ///\param G is the graph, to which
|
alpar@1218
|
772 |
// ///we would like to define the \ref PredNodeMap
|
alpar@1218
|
773 |
// static PredNodeMap *createPredNodeMap(const GR &G)
|
alpar@1218
|
774 |
// {
|
alpar@1218
|
775 |
// return new PredNodeMap();
|
alpar@1218
|
776 |
// }
|
alpar@1218
|
777 |
|
alpar@1218
|
778 |
///The type of the map that indicates which nodes are processed.
|
alpar@1218
|
779 |
|
alpar@1218
|
780 |
///The type of the map that indicates which nodes are processed.
|
alpar@1218
|
781 |
///It must meet the \ref concept::WriteMap "WriteMap" concept.
|
alpar@1218
|
782 |
///\todo named parameter to set this type, function to read and write.
|
alpar@1218
|
783 |
typedef NullMap<typename Graph::Node,bool> ProcessedMap;
|
alpar@1218
|
784 |
///Instantiates a ProcessedMap.
|
alpar@1218
|
785 |
|
alpar@1218
|
786 |
///This function instantiates a \ref ProcessedMap.
|
alpar@1218
|
787 |
///\param G is the graph, to which
|
alpar@1218
|
788 |
///we would like to define the \ref ProcessedMap
|
alpar@1218
|
789 |
static ProcessedMap *createProcessedMap(const GR &G)
|
alpar@1218
|
790 |
{
|
alpar@1218
|
791 |
return new ProcessedMap();
|
alpar@1218
|
792 |
}
|
alpar@1218
|
793 |
///The type of the map that indicates which nodes are reached.
|
alpar@1218
|
794 |
|
alpar@1218
|
795 |
///The type of the map that indicates which nodes are reached.
|
alpar@1218
|
796 |
///It must meet the \ref concept::WriteMap "WriteMap" concept.
|
alpar@1218
|
797 |
///\todo named parameter to set this type, function to read and write.
|
alpar@1218
|
798 |
typedef typename Graph::template NodeMap<bool> ReachedMap;
|
alpar@1218
|
799 |
///Instantiates a ReachedMap.
|
alpar@1218
|
800 |
|
alpar@1218
|
801 |
///This function instantiates a \ref ReachedMap.
|
alpar@1218
|
802 |
///\param G is the graph, to which
|
alpar@1218
|
803 |
///we would like to define the \ref ReachedMap.
|
alpar@1218
|
804 |
static ReachedMap *createReachedMap(const GR &G)
|
alpar@1218
|
805 |
{
|
alpar@1218
|
806 |
return new ReachedMap(G);
|
alpar@1218
|
807 |
}
|
alpar@1218
|
808 |
///The type of the map that stores the dists of the nodes.
|
alpar@1218
|
809 |
|
alpar@1218
|
810 |
///The type of the map that stores the dists of the nodes.
|
alpar@1218
|
811 |
///It must meet the \ref concept::WriteMap "WriteMap" concept.
|
alpar@1218
|
812 |
///
|
alpar@1218
|
813 |
typedef NullMap<typename Graph::Node,int> DistMap;
|
alpar@1218
|
814 |
///Instantiates a DistMap.
|
alpar@1218
|
815 |
|
alpar@1218
|
816 |
///This function instantiates a \ref DistMap.
|
alpar@1218
|
817 |
///\param G is the graph, to which we would like to define the \ref DistMap
|
alpar@1218
|
818 |
static DistMap *createDistMap(const GR &G)
|
alpar@1218
|
819 |
{
|
alpar@1218
|
820 |
return new DistMap();
|
alpar@1218
|
821 |
}
|
alpar@1218
|
822 |
};
|
alpar@1218
|
823 |
|
alpar@1218
|
824 |
/// Default traits used by \ref DfsWizard
|
alpar@1218
|
825 |
|
alpar@1218
|
826 |
/// To make it easier to use Dfs algorithm
|
alpar@1218
|
827 |
///we have created a wizard class.
|
alpar@1218
|
828 |
/// This \ref DfsWizard class needs default traits,
|
alpar@1218
|
829 |
///as well as the \ref Dfs class.
|
alpar@1218
|
830 |
/// The \ref DfsWizardBase is a class to be the default traits of the
|
alpar@1218
|
831 |
/// \ref DfsWizard class.
|
alpar@1218
|
832 |
template<class GR>
|
alpar@1218
|
833 |
class DfsWizardBase : public DfsWizardDefaultTraits<GR>
|
alpar@1218
|
834 |
{
|
alpar@1218
|
835 |
|
alpar@1218
|
836 |
typedef DfsWizardDefaultTraits<GR> Base;
|
alpar@1218
|
837 |
protected:
|
alpar@1218
|
838 |
/// Type of the nodes in the graph.
|
alpar@1218
|
839 |
typedef typename Base::Graph::Node Node;
|
alpar@1218
|
840 |
|
alpar@1218
|
841 |
/// Pointer to the underlying graph.
|
alpar@1218
|
842 |
void *_g;
|
alpar@1218
|
843 |
///Pointer to the map of reached nodes.
|
alpar@1218
|
844 |
void *_reached;
|
alpar@1218
|
845 |
///Pointer to the map of processed nodes.
|
alpar@1218
|
846 |
void *_processed;
|
alpar@1218
|
847 |
///Pointer to the map of predecessors edges.
|
alpar@1218
|
848 |
void *_pred;
|
alpar@1218
|
849 |
// ///Pointer to the map of predecessors nodes.
|
alpar@1218
|
850 |
// void *_predNode;
|
alpar@1218
|
851 |
///Pointer to the map of distances.
|
alpar@1218
|
852 |
void *_dist;
|
alpar@1218
|
853 |
///Pointer to the source node.
|
alpar@1218
|
854 |
Node _source;
|
alpar@1218
|
855 |
|
alpar@1218
|
856 |
public:
|
alpar@1218
|
857 |
/// Constructor.
|
alpar@1218
|
858 |
|
alpar@1218
|
859 |
/// This constructor does not require parameters, therefore it initiates
|
alpar@1218
|
860 |
/// all of the attributes to default values (0, INVALID).
|
alpar@1218
|
861 |
DfsWizardBase() : _g(0), _reached(0), _processed(0), _pred(0),
|
alpar@1218
|
862 |
// _predNode(0),
|
alpar@1218
|
863 |
_dist(0), _source(INVALID) {}
|
alpar@1218
|
864 |
|
alpar@1218
|
865 |
/// Constructor.
|
alpar@1218
|
866 |
|
alpar@1218
|
867 |
/// This constructor requires some parameters,
|
alpar@1218
|
868 |
/// listed in the parameters list.
|
alpar@1218
|
869 |
/// Others are initiated to 0.
|
alpar@1218
|
870 |
/// \param g is the initial value of \ref _g
|
alpar@1218
|
871 |
/// \param s is the initial value of \ref _source
|
alpar@1218
|
872 |
DfsWizardBase(const GR &g, Node s=INVALID) :
|
alpar@1218
|
873 |
_g((void *)&g), _reached(0), _processed(0), _pred(0),
|
alpar@1218
|
874 |
// _predNode(0),
|
alpar@1218
|
875 |
_dist(0), _source(s) {}
|
alpar@1218
|
876 |
|
alpar@1218
|
877 |
};
|
alpar@1218
|
878 |
|
alpar@1218
|
879 |
/// A class to make the usage of Dfs algorithm easier
|
alpar@1218
|
880 |
|
alpar@1218
|
881 |
/// This class is created to make it easier to use Dfs algorithm.
|
alpar@1218
|
882 |
/// It uses the functions and features of the plain \ref Dfs,
|
alpar@1218
|
883 |
/// but it is much simpler to use it.
|
alpar@1218
|
884 |
///
|
alpar@1218
|
885 |
/// Simplicity means that the way to change the types defined
|
alpar@1218
|
886 |
/// in the traits class is based on functions that returns the new class
|
alpar@1218
|
887 |
/// and not on templatable built-in classes.
|
alpar@1218
|
888 |
/// When using the plain \ref Dfs
|
alpar@1218
|
889 |
/// the new class with the modified type comes from
|
alpar@1218
|
890 |
/// the original class by using the ::
|
alpar@1218
|
891 |
/// operator. In the case of \ref DfsWizard only
|
alpar@1218
|
892 |
/// a function have to be called and it will
|
alpar@1218
|
893 |
/// return the needed class.
|
alpar@1218
|
894 |
///
|
alpar@1218
|
895 |
/// It does not have own \ref run method. When its \ref run method is called
|
alpar@1218
|
896 |
/// it initiates a plain \ref Dfs class, and calls the \ref Dfs::run
|
alpar@1218
|
897 |
/// method of it.
|
alpar@1218
|
898 |
template<class TR>
|
alpar@1218
|
899 |
class DfsWizard : public TR
|
alpar@1218
|
900 |
{
|
alpar@1218
|
901 |
typedef TR Base;
|
alpar@1218
|
902 |
|
alpar@1218
|
903 |
///The type of the underlying graph.
|
alpar@1218
|
904 |
typedef typename TR::Graph Graph;
|
alpar@1218
|
905 |
//\e
|
alpar@1218
|
906 |
typedef typename Graph::Node Node;
|
alpar@1218
|
907 |
//\e
|
alpar@1218
|
908 |
typedef typename Graph::NodeIt NodeIt;
|
alpar@1218
|
909 |
//\e
|
alpar@1218
|
910 |
typedef typename Graph::Edge Edge;
|
alpar@1218
|
911 |
//\e
|
alpar@1218
|
912 |
typedef typename Graph::OutEdgeIt OutEdgeIt;
|
alpar@1218
|
913 |
|
alpar@1218
|
914 |
///\brief The type of the map that stores
|
alpar@1218
|
915 |
///the reached nodes
|
alpar@1218
|
916 |
typedef typename TR::ReachedMap ReachedMap;
|
alpar@1218
|
917 |
///\brief The type of the map that stores
|
alpar@1218
|
918 |
///the processed nodes
|
alpar@1218
|
919 |
typedef typename TR::ProcessedMap ProcessedMap;
|
alpar@1218
|
920 |
///\brief The type of the map that stores the last
|
alpar@1218
|
921 |
///edges of the %DFS paths.
|
alpar@1218
|
922 |
typedef typename TR::PredMap PredMap;
|
alpar@1218
|
923 |
// ///\brief The type of the map that stores the last but one
|
alpar@1218
|
924 |
// ///nodes of the %DFS paths.
|
alpar@1218
|
925 |
// typedef typename TR::PredNodeMap PredNodeMap;
|
alpar@1218
|
926 |
///The type of the map that stores the dists of the nodes.
|
alpar@1218
|
927 |
typedef typename TR::DistMap DistMap;
|
alpar@1218
|
928 |
|
alpar@1218
|
929 |
public:
|
alpar@1218
|
930 |
/// Constructor.
|
alpar@1218
|
931 |
DfsWizard() : TR() {}
|
alpar@1218
|
932 |
|
alpar@1218
|
933 |
/// Constructor that requires parameters.
|
alpar@1218
|
934 |
|
alpar@1218
|
935 |
/// Constructor that requires parameters.
|
alpar@1218
|
936 |
/// These parameters will be the default values for the traits class.
|
alpar@1218
|
937 |
DfsWizard(const Graph &g, Node s=INVALID) :
|
alpar@1218
|
938 |
TR(g,s) {}
|
alpar@1218
|
939 |
|
alpar@1218
|
940 |
///Copy constructor
|
alpar@1218
|
941 |
DfsWizard(const TR &b) : TR(b) {}
|
alpar@1218
|
942 |
|
alpar@1218
|
943 |
~DfsWizard() {}
|
alpar@1218
|
944 |
|
alpar@1218
|
945 |
///Runs Dfs algorithm from a given node.
|
alpar@1218
|
946 |
|
alpar@1218
|
947 |
///Runs Dfs algorithm from a given node.
|
alpar@1218
|
948 |
///The node can be given by the \ref source function.
|
alpar@1218
|
949 |
void run()
|
alpar@1218
|
950 |
{
|
alpar@1218
|
951 |
if(Base::_source==INVALID) throw UninitializedParameter();
|
alpar@1218
|
952 |
Dfs<Graph,TR> alg(*(Graph*)Base::_g);
|
alpar@1218
|
953 |
if(Base::_reached) alg.reachedMap(*(ReachedMap*)Base::_reached);
|
alpar@1218
|
954 |
if(Base::_processed) alg.processedMap(*(ProcessedMap*)Base::_processed);
|
alpar@1218
|
955 |
if(Base::_pred) alg.predMap(*(PredMap*)Base::_pred);
|
alpar@1218
|
956 |
// if(Base::_predNode) alg.predNodeMap(*(PredNodeMap*)Base::_predNode);
|
alpar@1218
|
957 |
if(Base::_dist) alg.distMap(*(DistMap*)Base::_dist);
|
alpar@1218
|
958 |
alg.run(Base::_source);
|
alpar@1218
|
959 |
}
|
alpar@1218
|
960 |
|
alpar@1218
|
961 |
///Runs Dfs algorithm from the given node.
|
alpar@1218
|
962 |
|
alpar@1218
|
963 |
///Runs Dfs algorithm from the given node.
|
alpar@1218
|
964 |
///\param s is the given source.
|
alpar@1218
|
965 |
void run(Node s)
|
alpar@1218
|
966 |
{
|
alpar@1218
|
967 |
Base::_source=s;
|
alpar@1218
|
968 |
run();
|
alpar@1218
|
969 |
}
|
alpar@1218
|
970 |
|
alpar@1218
|
971 |
template<class T>
|
alpar@1218
|
972 |
struct DefPredMapBase : public Base {
|
alpar@1218
|
973 |
typedef T PredMap;
|
alpar@1218
|
974 |
static PredMap *createPredMap(const Graph &G) { return 0; };
|
alpar@1236
|
975 |
DefPredMapBase(const TR &b) : TR(b) {}
|
alpar@1218
|
976 |
};
|
alpar@1218
|
977 |
|
alpar@1218
|
978 |
///\brief \ref named-templ-param "Named parameter"
|
alpar@1218
|
979 |
///function for setting PredMap type
|
alpar@1218
|
980 |
///
|
alpar@1218
|
981 |
/// \ref named-templ-param "Named parameter"
|
alpar@1218
|
982 |
///function for setting PredMap type
|
alpar@1218
|
983 |
///
|
alpar@1218
|
984 |
template<class T>
|
alpar@1218
|
985 |
DfsWizard<DefPredMapBase<T> > predMap(const T &t)
|
alpar@1218
|
986 |
{
|
alpar@1218
|
987 |
Base::_pred=(void *)&t;
|
alpar@1218
|
988 |
return DfsWizard<DefPredMapBase<T> >(*this);
|
alpar@1218
|
989 |
}
|
alpar@1218
|
990 |
|
alpar@1218
|
991 |
|
alpar@1218
|
992 |
template<class T>
|
alpar@1218
|
993 |
struct DefReachedMapBase : public Base {
|
alpar@1218
|
994 |
typedef T ReachedMap;
|
alpar@1218
|
995 |
static ReachedMap *createReachedMap(const Graph &G) { return 0; };
|
alpar@1236
|
996 |
DefReachedMapBase(const TR &b) : TR(b) {}
|
alpar@1218
|
997 |
};
|
alpar@1218
|
998 |
|
alpar@1218
|
999 |
///\brief \ref named-templ-param "Named parameter"
|
alpar@1218
|
1000 |
///function for setting ReachedMap
|
alpar@1218
|
1001 |
///
|
alpar@1218
|
1002 |
/// \ref named-templ-param "Named parameter"
|
alpar@1218
|
1003 |
///function for setting ReachedMap
|
alpar@1218
|
1004 |
///
|
alpar@1218
|
1005 |
template<class T>
|
alpar@1218
|
1006 |
DfsWizard<DefReachedMapBase<T> > reachedMap(const T &t)
|
alpar@1218
|
1007 |
{
|
alpar@1218
|
1008 |
Base::_pred=(void *)&t;
|
alpar@1218
|
1009 |
return DfsWizard<DefReachedMapBase<T> >(*this);
|
alpar@1218
|
1010 |
}
|
alpar@1218
|
1011 |
|
alpar@1218
|
1012 |
|
alpar@1218
|
1013 |
template<class T>
|
alpar@1218
|
1014 |
struct DefProcessedMapBase : public Base {
|
alpar@1218
|
1015 |
typedef T ProcessedMap;
|
alpar@1218
|
1016 |
static ProcessedMap *createProcessedMap(const Graph &G) { return 0; };
|
alpar@1236
|
1017 |
DefProcessedMapBase(const TR &b) : TR(b) {}
|
alpar@1218
|
1018 |
};
|
alpar@1218
|
1019 |
|
alpar@1218
|
1020 |
///\brief \ref named-templ-param "Named parameter"
|
alpar@1218
|
1021 |
///function for setting ProcessedMap
|
alpar@1218
|
1022 |
///
|
alpar@1218
|
1023 |
/// \ref named-templ-param "Named parameter"
|
alpar@1218
|
1024 |
///function for setting ProcessedMap
|
alpar@1218
|
1025 |
///
|
alpar@1218
|
1026 |
template<class T>
|
alpar@1218
|
1027 |
DfsWizard<DefProcessedMapBase<T> > processedMap(const T &t)
|
alpar@1218
|
1028 |
{
|
alpar@1218
|
1029 |
Base::_pred=(void *)&t;
|
alpar@1218
|
1030 |
return DfsWizard<DefProcessedMapBase<T> >(*this);
|
alpar@1218
|
1031 |
}
|
alpar@1218
|
1032 |
|
alpar@1218
|
1033 |
|
alpar@1218
|
1034 |
// template<class T>
|
alpar@1218
|
1035 |
// struct DefPredNodeMapBase : public Base {
|
alpar@1218
|
1036 |
// typedef T PredNodeMap;
|
alpar@1218
|
1037 |
// static PredNodeMap *createPredNodeMap(const Graph &G) { return 0; };
|
alpar@1236
|
1038 |
// DefPredNodeMapBase(const TR &b) : TR(b) {}
|
alpar@1218
|
1039 |
// };
|
alpar@1218
|
1040 |
|
alpar@1218
|
1041 |
// ///\brief \ref named-templ-param "Named parameter"
|
alpar@1218
|
1042 |
// ///function for setting PredNodeMap type
|
alpar@1218
|
1043 |
// ///
|
alpar@1218
|
1044 |
// /// \ref named-templ-param "Named parameter"
|
alpar@1218
|
1045 |
// ///function for setting PredNodeMap type
|
alpar@1218
|
1046 |
// ///
|
alpar@1218
|
1047 |
// template<class T>
|
alpar@1218
|
1048 |
// DfsWizard<DefPredNodeMapBase<T> > predNodeMap(const T &t)
|
alpar@1218
|
1049 |
// {
|
alpar@1218
|
1050 |
// Base::_predNode=(void *)&t;
|
alpar@1218
|
1051 |
// return DfsWizard<DefPredNodeMapBase<T> >(*this);
|
alpar@1218
|
1052 |
// }
|
alpar@1218
|
1053 |
|
alpar@1218
|
1054 |
template<class T>
|
alpar@1218
|
1055 |
struct DefDistMapBase : public Base {
|
alpar@1218
|
1056 |
typedef T DistMap;
|
alpar@1218
|
1057 |
static DistMap *createDistMap(const Graph &G) { return 0; };
|
alpar@1236
|
1058 |
DefDistMapBase(const TR &b) : TR(b) {}
|
alpar@1218
|
1059 |
};
|
alpar@1218
|
1060 |
|
alpar@1218
|
1061 |
///\brief \ref named-templ-param "Named parameter"
|
alpar@1218
|
1062 |
///function for setting DistMap type
|
alpar@1218
|
1063 |
///
|
alpar@1218
|
1064 |
/// \ref named-templ-param "Named parameter"
|
alpar@1218
|
1065 |
///function for setting DistMap type
|
alpar@1218
|
1066 |
///
|
alpar@1218
|
1067 |
template<class T>
|
alpar@1218
|
1068 |
DfsWizard<DefDistMapBase<T> > distMap(const T &t)
|
alpar@1218
|
1069 |
{
|
alpar@1218
|
1070 |
Base::_dist=(void *)&t;
|
alpar@1218
|
1071 |
return DfsWizard<DefDistMapBase<T> >(*this);
|
alpar@1218
|
1072 |
}
|
alpar@1218
|
1073 |
|
alpar@1218
|
1074 |
/// Sets the source node, from which the Dfs algorithm runs.
|
alpar@1218
|
1075 |
|
alpar@1218
|
1076 |
/// Sets the source node, from which the Dfs algorithm runs.
|
alpar@1218
|
1077 |
/// \param s is the source node.
|
alpar@1218
|
1078 |
DfsWizard<TR> &source(Node s)
|
alpar@1218
|
1079 |
{
|
alpar@1218
|
1080 |
Base::_source=s;
|
alpar@1218
|
1081 |
return *this;
|
alpar@1218
|
1082 |
}
|
alpar@780
|
1083 |
|
alpar@780
|
1084 |
};
|
alpar@780
|
1085 |
|
alpar@1218
|
1086 |
///Function type interface for Dfs algorithm.
|
alpar@1218
|
1087 |
|
alpar@1218
|
1088 |
/// \ingroup flowalgs
|
alpar@1218
|
1089 |
///Function type interface for Dfs algorithm.
|
alpar@1218
|
1090 |
///
|
alpar@1218
|
1091 |
///This function also has several
|
alpar@1218
|
1092 |
///\ref named-templ-func-param "named parameters",
|
alpar@1218
|
1093 |
///they are declared as the members of class \ref DfsWizard.
|
alpar@1218
|
1094 |
///The following
|
alpar@1218
|
1095 |
///example shows how to use these parameters.
|
alpar@1218
|
1096 |
///\code
|
alpar@1218
|
1097 |
/// dfs(g,source).predMap(preds).run();
|
alpar@1218
|
1098 |
///\endcode
|
alpar@1218
|
1099 |
///\warning Don't forget to put the \ref DfsWizard::run() "run()"
|
alpar@1218
|
1100 |
///to the end of the parameter list.
|
alpar@1218
|
1101 |
///\sa DfsWizard
|
alpar@1218
|
1102 |
///\sa Dfs
|
alpar@1218
|
1103 |
template<class GR>
|
alpar@1218
|
1104 |
DfsWizard<DfsWizardBase<GR> >
|
alpar@1218
|
1105 |
dfs(const GR &g,typename GR::Node s=INVALID)
|
alpar@1218
|
1106 |
{
|
alpar@1218
|
1107 |
return DfsWizard<DfsWizardBase<GR> >(g,s);
|
alpar@1218
|
1108 |
}
|
alpar@1218
|
1109 |
|
alpar@921
|
1110 |
} //END OF NAMESPACE LEMON
|
alpar@780
|
1111 |
|
alpar@780
|
1112 |
#endif
|
alpar@780
|
1113 |
|