| 1 |
1 |
/* -*- C++ -*-
|
| 2 |
2 |
*
|
| 3 |
3 |
* This file is a part of LEMON, a generic C++ optimization library
|
| 4 |
4 |
*
|
| 5 |
5 |
* Copyright (C) 2003-2008
|
| 6 |
6 |
* Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
|
| 7 |
7 |
* (Egervary Research Group on Combinatorial Optimization, EGRES).
|
| 8 |
8 |
*
|
| 9 |
9 |
* Permission to use, modify and distribute this software is granted
|
| 10 |
10 |
* provided that this copyright notice appears in all copies. For
|
| 11 |
11 |
* precise terms see the accompanying LICENSE file.
|
| 12 |
12 |
*
|
| 13 |
13 |
* This software is provided "AS IS" with no warranty of any kind,
|
| 14 |
14 |
* express or implied, and with no claim as to its suitability for any
|
| 15 |
15 |
* purpose.
|
| 16 |
16 |
*
|
| 17 |
17 |
*/
|
| 18 |
18 |
|
| 19 |
19 |
#ifndef LEMON_GRAPH_UTILS_H
|
| 20 |
20 |
#define LEMON_GRAPH_UTILS_H
|
| 21 |
21 |
|
| 22 |
22 |
#include <iterator>
|
| 23 |
23 |
#include <vector>
|
| 24 |
24 |
#include <map>
|
| 25 |
25 |
#include <cmath>
|
| 26 |
26 |
#include <algorithm>
|
| 27 |
27 |
|
| 28 |
28 |
#include <lemon/bits/invalid.h>
|
| 29 |
29 |
#include <lemon/bits/utility.h>
|
| 30 |
30 |
#include <lemon/maps.h>
|
| 31 |
31 |
#include <lemon/bits/traits.h>
|
| 32 |
32 |
|
| 33 |
33 |
#include <lemon/bits/alteration_notifier.h>
|
| 34 |
34 |
#include <lemon/bits/default_map.h>
|
| 35 |
35 |
|
| 36 |
36 |
///\ingroup gutils
|
| 37 |
37 |
///\file
|
| 38 |
38 |
///\brief Graph utilities.
|
| 39 |
39 |
|
| 40 |
40 |
namespace lemon {
|
| 41 |
41 |
|
| 42 |
42 |
/// \addtogroup gutils
|
| 43 |
43 |
/// @{
|
| 44 |
44 |
|
| 45 |
|
namespace _graph_utils_bits {
|
| 46 |
|
template <typename Graph>
|
| 47 |
|
struct Node { typedef typename Graph::Node type; };
|
| 48 |
|
|
| 49 |
|
template <typename Graph>
|
| 50 |
|
struct NodeIt { typedef typename Graph::NodeIt type; };
|
| 51 |
|
|
| 52 |
|
template <typename Graph>
|
| 53 |
|
struct Arc { typedef typename Graph::Arc type; };
|
| 54 |
|
|
| 55 |
|
template <typename Graph>
|
| 56 |
|
struct ArcIt { typedef typename Graph::ArcIt type; };
|
| 57 |
|
|
| 58 |
|
template <typename Graph>
|
| 59 |
|
struct Edge { typedef typename Graph::Edge type; };
|
| 60 |
|
|
| 61 |
|
template <typename Graph>
|
| 62 |
|
struct EdgeIt { typedef typename Graph::EdgeIt type; };
|
| 63 |
|
|
| 64 |
|
template <typename Graph>
|
| 65 |
|
struct OutArcIt { typedef typename Graph::OutArcIt type; };
|
| 66 |
|
|
| 67 |
|
template <typename Graph>
|
| 68 |
|
struct InArcIt { typedef typename Graph::InArcIt type; };
|
| 69 |
|
|
| 70 |
|
template <typename Graph>
|
| 71 |
|
struct IncEdgeIt { typedef typename Graph::IncEdgeIt type; };
|
| 72 |
|
|
| 73 |
|
template <typename Graph>
|
| 74 |
|
struct BoolNodeMap {
|
| 75 |
|
typedef typename Graph::template NodeMap<bool> type;
|
| 76 |
|
};
|
| 77 |
|
|
| 78 |
|
template <typename Graph>
|
| 79 |
|
struct IntNodeMap {
|
| 80 |
|
typedef typename Graph::template NodeMap<int> type;
|
| 81 |
|
};
|
| 82 |
|
|
| 83 |
|
template <typename Graph>
|
| 84 |
|
struct DoubleNodeMap {
|
| 85 |
|
typedef typename Graph::template NodeMap<double> type;
|
| 86 |
|
};
|
| 87 |
|
|
| 88 |
|
template <typename Graph>
|
| 89 |
|
struct BoolArcMap {
|
| 90 |
|
typedef typename Graph::template ArcMap<bool> type;
|
| 91 |
|
};
|
| 92 |
|
|
| 93 |
|
template <typename Graph>
|
| 94 |
|
struct IntArcMap {
|
| 95 |
|
typedef typename Graph::template ArcMap<int> type;
|
| 96 |
|
};
|
| 97 |
|
|
| 98 |
|
template <typename Graph>
|
| 99 |
|
struct DoubleArcMap {
|
| 100 |
|
typedef typename Graph::template ArcMap<double> type;
|
| 101 |
|
};
|
| 102 |
|
|
| 103 |
|
template <typename Graph>
|
| 104 |
|
struct BoolEdgeMap {
|
| 105 |
|
typedef typename Graph::template EdgeMap<bool> type;
|
| 106 |
|
};
|
| 107 |
|
|
| 108 |
|
template <typename Graph>
|
| 109 |
|
struct IntEdgeMap {
|
| 110 |
|
typedef typename Graph::template EdgeMap<int> type;
|
| 111 |
|
};
|
| 112 |
|
|
| 113 |
|
template <typename Graph>
|
| 114 |
|
struct DoubleEdgeMap {
|
| 115 |
|
typedef typename Graph::template EdgeMap<double> type;
|
| 116 |
|
};
|
| 117 |
|
|
| 118 |
|
|
| 119 |
|
}
|
| 120 |
|
|
| 121 |
45 |
///Creates convenience typedefs for the digraph types and iterators
|
| 122 |
46 |
|
| 123 |
47 |
///This \c \#define creates convenience typedefs for the following types
|
| 124 |
48 |
///of \c Digraph: \c Node, \c NodeIt, \c Arc, \c ArcIt, \c InArcIt,
|
| 125 |
49 |
///\c OutArcIt, \c BoolNodeMap, \c IntNodeMap, \c DoubleNodeMap,
|
| 126 |
|
///\c BoolArcMap, \c IntArcMap, \c DoubleArcMap.
|
|
50 |
///\c BoolArcMap, \c IntArcMap, \c DoubleArcMap.
|
|
51 |
///
|
|
52 |
///\note If the graph type is a dependent type, ie. the graph type depend
|
|
53 |
///on a template parameter, then use \c TEMPLATE_DIGRAPH_TYPEDEFS()
|
|
54 |
///macro.
|
| 127 |
55 |
#define DIGRAPH_TYPEDEFS(Digraph) \
|
| 128 |
|
typedef typename ::lemon::_graph_utils_bits:: \
|
| 129 |
|
Node<Digraph>::type Node; \
|
| 130 |
|
typedef typename ::lemon::_graph_utils_bits:: \
|
| 131 |
|
NodeIt<Digraph>::type NodeIt; \
|
| 132 |
|
typedef typename ::lemon::_graph_utils_bits:: \
|
| 133 |
|
Arc<Digraph>::type Arc; \
|
| 134 |
|
typedef typename ::lemon::_graph_utils_bits:: \
|
| 135 |
|
ArcIt<Digraph>::type ArcIt; \
|
| 136 |
|
typedef typename ::lemon::_graph_utils_bits:: \
|
| 137 |
|
OutArcIt<Digraph>::type OutArcIt; \
|
| 138 |
|
typedef typename ::lemon::_graph_utils_bits:: \
|
| 139 |
|
InArcIt<Digraph>::type InArcIt; \
|
| 140 |
|
typedef typename ::lemon::_graph_utils_bits:: \
|
| 141 |
|
BoolNodeMap<Digraph>::type BoolNodeMap; \
|
| 142 |
|
typedef typename ::lemon::_graph_utils_bits:: \
|
| 143 |
|
IntNodeMap<Digraph>::type IntNodeMap; \
|
| 144 |
|
typedef typename ::lemon::_graph_utils_bits:: \
|
| 145 |
|
DoubleNodeMap<Digraph>::type DoubleNodeMap; \
|
| 146 |
|
typedef typename ::lemon::_graph_utils_bits:: \
|
| 147 |
|
BoolArcMap<Digraph>::type BoolArcMap; \
|
| 148 |
|
typedef typename ::lemon::_graph_utils_bits:: \
|
| 149 |
|
IntArcMap<Digraph>::type IntArcMap; \
|
| 150 |
|
typedef typename ::lemon::_graph_utils_bits:: \
|
| 151 |
|
DoubleArcMap<Digraph>::type DoubleArcMap
|
|
56 |
typedef Digraph::Node Node; \
|
|
57 |
typedef Digraph::NodeIt NodeIt; \
|
|
58 |
typedef Digraph::Arc Arc; \
|
|
59 |
typedef Digraph::ArcIt ArcIt; \
|
|
60 |
typedef Digraph::InArcIt InArcIt; \
|
|
61 |
typedef Digraph::OutArcIt OutArcIt; \
|
|
62 |
typedef Digraph::NodeMap<bool> BoolNodeMap; \
|
|
63 |
typedef Digraph::NodeMap<int> IntNodeMap; \
|
|
64 |
typedef Digraph::NodeMap<double> DoubleNodeMap; \
|
|
65 |
typedef Digraph::ArcMap<bool> BoolArcMap; \
|
|
66 |
typedef Digraph::ArcMap<int> IntArcMap; \
|
|
67 |
typedef Digraph::ArcMap<double> DoubleArcMap
|
| 152 |
68 |
|
|
69 |
///Creates convenience typedefs for the digraph types and iterators
|
| 153 |
70 |
|
|
71 |
///\see DIGRAPH_TYPEDEFS
|
|
72 |
///
|
|
73 |
///\note Use this macro, if the graph type is a dependent type,
|
|
74 |
///ie. the graph type depend on a template parameter.
|
|
75 |
#define TEMPLATE_DIGRAPH_TYPEDEFS(Digraph) \
|
|
76 |
typedef typename Digraph::Node Node; \
|
|
77 |
typedef typename Digraph::NodeIt NodeIt; \
|
|
78 |
typedef typename Digraph::Arc Arc; \
|
|
79 |
typedef typename Digraph::ArcIt ArcIt; \
|
|
80 |
typedef typename Digraph::InArcIt InArcIt; \
|
|
81 |
typedef typename Digraph::OutArcIt OutArcIt; \
|
|
82 |
typedef typename Digraph::template NodeMap<bool> BoolNodeMap; \
|
|
83 |
typedef typename Digraph::template NodeMap<int> IntNodeMap; \
|
|
84 |
typedef typename Digraph::template NodeMap<double> DoubleNodeMap; \
|
|
85 |
typedef typename Digraph::template ArcMap<bool> BoolArcMap; \
|
|
86 |
typedef typename Digraph::template ArcMap<int> IntArcMap; \
|
|
87 |
typedef typename Digraph::template ArcMap<double> DoubleArcMap
|
|
88 |
|
| 154 |
89 |
///Creates convenience typedefs for the graph types and iterators
|
| 155 |
90 |
|
| 156 |
91 |
///This \c \#define creates the same convenience typedefs as defined
|
| 157 |
92 |
///by \ref DIGRAPH_TYPEDEFS(Graph) and six more, namely it creates
|
| 158 |
93 |
///\c Edge, \c EdgeIt, \c IncEdgeIt, \c BoolEdgeMap, \c IntEdgeMap,
|
| 159 |
94 |
///\c DoubleEdgeMap.
|
|
95 |
///
|
|
96 |
///\note If the graph type is a dependent type, ie. the graph type depend
|
|
97 |
///on a template parameter, then use \c TEMPLATE_DIGRAPH_TYPEDEFS()
|
|
98 |
///macro.
|
| 160 |
99 |
#define GRAPH_TYPEDEFS(Graph) \
|
| 161 |
100 |
DIGRAPH_TYPEDEFS(Graph); \
|
| 162 |
|
typedef typename ::lemon::_graph_utils_bits:: \
|
| 163 |
|
Edge<Graph>::type Edge; \
|
| 164 |
|
typedef typename ::lemon::_graph_utils_bits:: \
|
| 165 |
|
EdgeIt<Graph>::type EdgeIt; \
|
| 166 |
|
typedef typename ::lemon::_graph_utils_bits:: \
|
| 167 |
|
IncEdgeIt<Graph>::type IncEdgeIt; \
|
| 168 |
|
typedef typename ::lemon::_graph_utils_bits:: \
|
| 169 |
|
BoolEdgeMap<Graph>::type BoolEdgeMap; \
|
| 170 |
|
typedef typename ::lemon::_graph_utils_bits:: \
|
| 171 |
|
IntEdgeMap<Graph>::type IntEdgeMap; \
|
| 172 |
|
typedef typename ::lemon::_graph_utils_bits:: \
|
| 173 |
|
DoubleEdgeMap<Graph>::type DoubleEdgeMap
|
|
101 |
typedef Graph::Edge Edge; \
|
|
102 |
typedef Graph::EdgeIt EdgeIt; \
|
|
103 |
typedef Graph::IncEdgeIt IncEdgeIt; \
|
|
104 |
typedef Graph::EdgeMap<bool> BoolEdgeMap; \
|
|
105 |
typedef Graph::EdgeMap<int> IntEdgeMap; \
|
|
106 |
typedef Graph::EdgeMap<double> DoubleEdgeMap
|
| 174 |
107 |
|
|
108 |
///Creates convenience typedefs for the graph types and iterators
|
|
109 |
|
|
110 |
///\see GRAPH_TYPEDEFS
|
|
111 |
///
|
|
112 |
///\note Use this macro, if the graph type is a dependent type,
|
|
113 |
///ie. the graph type depend on a template parameter.
|
|
114 |
#define TEMPLATE_GRAPH_TYPEDEFS(Graph) \
|
|
115 |
TEMPLATE_DIGRAPH_TYPEDEFS(Graph); \
|
|
116 |
typedef typename Graph::Edge Edge; \
|
|
117 |
typedef typename Graph::EdgeIt EdgeIt; \
|
|
118 |
typedef typename Graph::IncEdgeIt IncEdgeIt; \
|
|
119 |
typedef typename Graph::template EdgeMap<bool> BoolEdgeMap; \
|
|
120 |
typedef typename Graph::template EdgeMap<int> IntEdgeMap; \
|
|
121 |
typedef typename Graph::template EdgeMap<double> DoubleEdgeMap
|
| 175 |
122 |
|
| 176 |
123 |
/// \brief Function to count the items in the graph.
|
| 177 |
124 |
///
|
| 178 |
125 |
/// This function counts the items (nodes, arcs etc) in the graph.
|
| 179 |
126 |
/// The complexity of the function is O(n) because
|
| 180 |
127 |
/// it iterates on all of the items.
|
| 181 |
128 |
template <typename Graph, typename Item>
|
| 182 |
129 |
inline int countItems(const Graph& g) {
|
| 183 |
130 |
typedef typename ItemSetTraits<Graph, Item>::ItemIt ItemIt;
|
| 184 |
131 |
int num = 0;
|
| 185 |
132 |
for (ItemIt it(g); it != INVALID; ++it) {
|
| 186 |
133 |
++num;
|
| 187 |
134 |
}
|
| 188 |
135 |
return num;
|
| 189 |
136 |
}
|
| 190 |
137 |
|
| 191 |
138 |
// Node counting:
|
| 192 |
139 |
|
| 193 |
140 |
namespace _graph_utils_bits {
|
| 194 |
141 |
|
| 195 |
142 |
template <typename Graph, typename Enable = void>
|
| 196 |
143 |
struct CountNodesSelector {
|
| 197 |
144 |
static int count(const Graph &g) {
|
| 198 |
145 |
return countItems<Graph, typename Graph::Node>(g);
|
| 199 |
146 |
}
|
| 200 |
147 |
};
|
| 201 |
148 |
|
| 202 |
149 |
template <typename Graph>
|
| 203 |
150 |
struct CountNodesSelector<
|
| 204 |
151 |
Graph, typename
|
| 205 |
152 |
enable_if<typename Graph::NodeNumTag, void>::type>
|
| 206 |
153 |
{
|
| 207 |
154 |
static int count(const Graph &g) {
|
| 208 |
155 |
return g.nodeNum();
|
| 209 |
156 |
}
|
| 210 |
157 |
};
|
| 211 |
158 |
}
|
| 212 |
159 |
|
| 213 |
160 |
/// \brief Function to count the nodes in the graph.
|
| 214 |
161 |
///
|
| 215 |
162 |
/// This function counts the nodes in the graph.
|
| 216 |
163 |
/// The complexity of the function is O(n) but for some
|
| 217 |
164 |
/// graph structures it is specialized to run in O(1).
|
| 218 |
165 |
///
|
| 219 |
166 |
/// If the graph contains a \e nodeNum() member function and a
|
| 220 |
167 |
/// \e NodeNumTag tag then this function calls directly the member
|
| 221 |
168 |
/// function to query the cardinality of the node set.
|
| 222 |
169 |
template <typename Graph>
|
| ... |
... |
@@ -2116,97 +2063,97 @@
|
| 2116 |
2063 |
for(typename Digraph::NodeIt it(_digraph); it != INVALID; ++it) {
|
| 2117 |
2064 |
_deg[it] = countOutArcs(_digraph, it);
|
| 2118 |
2065 |
}
|
| 2119 |
2066 |
}
|
| 2120 |
2067 |
|
| 2121 |
2068 |
virtual void clear() {
|
| 2122 |
2069 |
for(typename Digraph::NodeIt it(_digraph); it != INVALID; ++it) {
|
| 2123 |
2070 |
_deg[it] = 0;
|
| 2124 |
2071 |
}
|
| 2125 |
2072 |
}
|
| 2126 |
2073 |
private:
|
| 2127 |
2074 |
|
| 2128 |
2075 |
const Digraph& _digraph;
|
| 2129 |
2076 |
AutoNodeMap _deg;
|
| 2130 |
2077 |
};
|
| 2131 |
2078 |
|
| 2132 |
2079 |
|
| 2133 |
2080 |
///Dynamic arc look up between given endpoints.
|
| 2134 |
2081 |
|
| 2135 |
2082 |
///\ingroup gutils
|
| 2136 |
2083 |
///Using this class, you can find an arc in a digraph from a given
|
| 2137 |
2084 |
///source to a given target in amortized time <em>O(log d)</em>,
|
| 2138 |
2085 |
///where <em>d</em> is the out-degree of the source node.
|
| 2139 |
2086 |
///
|
| 2140 |
2087 |
///It is possible to find \e all parallel arcs between two nodes with
|
| 2141 |
2088 |
///the \c findFirst() and \c findNext() members.
|
| 2142 |
2089 |
///
|
| 2143 |
2090 |
///See the \ref ArcLookUp and \ref AllArcLookUp classes if your
|
| 2144 |
2091 |
///digraph is not changed so frequently.
|
| 2145 |
2092 |
///
|
| 2146 |
2093 |
///This class uses a self-adjusting binary search tree, Sleator's
|
| 2147 |
2094 |
///and Tarjan's Splay tree for guarantee the logarithmic amortized
|
| 2148 |
2095 |
///time bound for arc lookups. This class also guarantees the
|
| 2149 |
2096 |
///optimal time bound in a constant factor for any distribution of
|
| 2150 |
2097 |
///queries.
|
| 2151 |
2098 |
///
|
| 2152 |
2099 |
///\param G The type of the underlying digraph.
|
| 2153 |
2100 |
///
|
| 2154 |
2101 |
///\sa ArcLookUp
|
| 2155 |
2102 |
///\sa AllArcLookUp
|
| 2156 |
2103 |
template<class G>
|
| 2157 |
2104 |
class DynArcLookUp
|
| 2158 |
2105 |
: protected ItemSetTraits<G, typename G::Arc>::ItemNotifier::ObserverBase
|
| 2159 |
2106 |
{
|
| 2160 |
2107 |
public:
|
| 2161 |
2108 |
typedef typename ItemSetTraits<G, typename G::Arc>
|
| 2162 |
2109 |
::ItemNotifier::ObserverBase Parent;
|
| 2163 |
2110 |
|
| 2164 |
|
DIGRAPH_TYPEDEFS(G);
|
|
2111 |
TEMPLATE_DIGRAPH_TYPEDEFS(G);
|
| 2165 |
2112 |
typedef G Digraph;
|
| 2166 |
2113 |
|
| 2167 |
2114 |
protected:
|
| 2168 |
2115 |
|
| 2169 |
2116 |
class AutoNodeMap : public DefaultMap<G, Node, Arc> {
|
| 2170 |
2117 |
public:
|
| 2171 |
2118 |
|
| 2172 |
2119 |
typedef DefaultMap<G, Node, Arc> Parent;
|
| 2173 |
2120 |
|
| 2174 |
2121 |
AutoNodeMap(const G& digraph) : Parent(digraph, INVALID) {}
|
| 2175 |
2122 |
|
| 2176 |
2123 |
virtual void add(const Node& node) {
|
| 2177 |
2124 |
Parent::add(node);
|
| 2178 |
2125 |
Parent::set(node, INVALID);
|
| 2179 |
2126 |
}
|
| 2180 |
2127 |
|
| 2181 |
2128 |
virtual void add(const std::vector<Node>& nodes) {
|
| 2182 |
2129 |
Parent::add(nodes);
|
| 2183 |
2130 |
for (int i = 0; i < int(nodes.size()); ++i) {
|
| 2184 |
2131 |
Parent::set(nodes[i], INVALID);
|
| 2185 |
2132 |
}
|
| 2186 |
2133 |
}
|
| 2187 |
2134 |
|
| 2188 |
2135 |
virtual void build() {
|
| 2189 |
2136 |
Parent::build();
|
| 2190 |
2137 |
Node it;
|
| 2191 |
2138 |
typename Parent::Notifier* nf = Parent::notifier();
|
| 2192 |
2139 |
for (nf->first(it); it != INVALID; nf->next(it)) {
|
| 2193 |
2140 |
Parent::set(it, INVALID);
|
| 2194 |
2141 |
}
|
| 2195 |
2142 |
}
|
| 2196 |
2143 |
};
|
| 2197 |
2144 |
|
| 2198 |
2145 |
const Digraph &_g;
|
| 2199 |
2146 |
AutoNodeMap _head;
|
| 2200 |
2147 |
typename Digraph::template ArcMap<Arc> _parent;
|
| 2201 |
2148 |
typename Digraph::template ArcMap<Arc> _left;
|
| 2202 |
2149 |
typename Digraph::template ArcMap<Arc> _right;
|
| 2203 |
2150 |
|
| 2204 |
2151 |
class ArcLess {
|
| 2205 |
2152 |
const Digraph &g;
|
| 2206 |
2153 |
public:
|
| 2207 |
2154 |
ArcLess(const Digraph &_g) : g(_g) {}
|
| 2208 |
2155 |
bool operator()(Arc a,Arc b) const
|
| 2209 |
2156 |
{
|
| 2210 |
2157 |
return g.target(a)<g.target(b);
|
| 2211 |
2158 |
}
|
| 2212 |
2159 |
};
|
| ... |
... |
@@ -2553,97 +2500,97 @@
|
| 2553 |
2500 |
#endif
|
| 2554 |
2501 |
{
|
| 2555 |
2502 |
if (_right[a] != INVALID) {
|
| 2556 |
2503 |
a = _right[a];
|
| 2557 |
2504 |
while (_left[a] != INVALID) {
|
| 2558 |
2505 |
a = _left[a];
|
| 2559 |
2506 |
}
|
| 2560 |
2507 |
const_cast<DynArcLookUp&>(*this).splay(a);
|
| 2561 |
2508 |
} else {
|
| 2562 |
2509 |
while (_parent[a] != INVALID && _right[_parent[a]] == a) {
|
| 2563 |
2510 |
a = _parent[a];
|
| 2564 |
2511 |
}
|
| 2565 |
2512 |
if (_parent[a] == INVALID) {
|
| 2566 |
2513 |
return INVALID;
|
| 2567 |
2514 |
} else {
|
| 2568 |
2515 |
a = _parent[a];
|
| 2569 |
2516 |
const_cast<DynArcLookUp&>(*this).splay(a);
|
| 2570 |
2517 |
}
|
| 2571 |
2518 |
}
|
| 2572 |
2519 |
if (_g.target(a) == t) return a;
|
| 2573 |
2520 |
else return INVALID;
|
| 2574 |
2521 |
}
|
| 2575 |
2522 |
|
| 2576 |
2523 |
};
|
| 2577 |
2524 |
|
| 2578 |
2525 |
///Fast arc look up between given endpoints.
|
| 2579 |
2526 |
|
| 2580 |
2527 |
///\ingroup gutils
|
| 2581 |
2528 |
///Using this class, you can find an arc in a digraph from a given
|
| 2582 |
2529 |
///source to a given target in time <em>O(log d)</em>,
|
| 2583 |
2530 |
///where <em>d</em> is the out-degree of the source node.
|
| 2584 |
2531 |
///
|
| 2585 |
2532 |
///It is not possible to find \e all parallel arcs between two nodes.
|
| 2586 |
2533 |
///Use \ref AllArcLookUp for this purpose.
|
| 2587 |
2534 |
///
|
| 2588 |
2535 |
///\warning This class is static, so you should refresh() (or at least
|
| 2589 |
2536 |
///refresh(Node)) this data structure
|
| 2590 |
2537 |
///whenever the digraph changes. This is a time consuming (superlinearly
|
| 2591 |
2538 |
///proportional (<em>O(m</em>log<em>m)</em>) to the number of arcs).
|
| 2592 |
2539 |
///
|
| 2593 |
2540 |
///\param G The type of the underlying digraph.
|
| 2594 |
2541 |
///
|
| 2595 |
2542 |
///\sa DynArcLookUp
|
| 2596 |
2543 |
///\sa AllArcLookUp
|
| 2597 |
2544 |
template<class G>
|
| 2598 |
2545 |
class ArcLookUp
|
| 2599 |
2546 |
{
|
| 2600 |
2547 |
public:
|
| 2601 |
|
DIGRAPH_TYPEDEFS(G);
|
|
2548 |
TEMPLATE_DIGRAPH_TYPEDEFS(G);
|
| 2602 |
2549 |
typedef G Digraph;
|
| 2603 |
2550 |
|
| 2604 |
2551 |
protected:
|
| 2605 |
2552 |
const Digraph &_g;
|
| 2606 |
2553 |
typename Digraph::template NodeMap<Arc> _head;
|
| 2607 |
2554 |
typename Digraph::template ArcMap<Arc> _left;
|
| 2608 |
2555 |
typename Digraph::template ArcMap<Arc> _right;
|
| 2609 |
2556 |
|
| 2610 |
2557 |
class ArcLess {
|
| 2611 |
2558 |
const Digraph &g;
|
| 2612 |
2559 |
public:
|
| 2613 |
2560 |
ArcLess(const Digraph &_g) : g(_g) {}
|
| 2614 |
2561 |
bool operator()(Arc a,Arc b) const
|
| 2615 |
2562 |
{
|
| 2616 |
2563 |
return g.target(a)<g.target(b);
|
| 2617 |
2564 |
}
|
| 2618 |
2565 |
};
|
| 2619 |
2566 |
|
| 2620 |
2567 |
public:
|
| 2621 |
2568 |
|
| 2622 |
2569 |
///Constructor
|
| 2623 |
2570 |
|
| 2624 |
2571 |
///Constructor.
|
| 2625 |
2572 |
///
|
| 2626 |
2573 |
///It builds up the search database, which remains valid until the digraph
|
| 2627 |
2574 |
///changes.
|
| 2628 |
2575 |
ArcLookUp(const Digraph &g) :_g(g),_head(g),_left(g),_right(g) {refresh();}
|
| 2629 |
2576 |
|
| 2630 |
2577 |
private:
|
| 2631 |
2578 |
Arc refreshRec(std::vector<Arc> &v,int a,int b)
|
| 2632 |
2579 |
{
|
| 2633 |
2580 |
int m=(a+b)/2;
|
| 2634 |
2581 |
Arc me=v[m];
|
| 2635 |
2582 |
_left[me] = a<m?refreshRec(v,a,m-1):INVALID;
|
| 2636 |
2583 |
_right[me] = m<b?refreshRec(v,m+1,b):INVALID;
|
| 2637 |
2584 |
return me;
|
| 2638 |
2585 |
}
|
| 2639 |
2586 |
public:
|
| 2640 |
2587 |
///Refresh the data structure at a node.
|
| 2641 |
2588 |
|
| 2642 |
2589 |
///Build up the search database of node \c n.
|
| 2643 |
2590 |
///
|
| 2644 |
2591 |
///It runs in time <em>O(d</em>log<em>d)</em>, where <em>d</em> is
|
| 2645 |
2592 |
///the number of the outgoing arcs of \c n.
|
| 2646 |
2593 |
void refresh(Node n)
|
| 2647 |
2594 |
{
|
| 2648 |
2595 |
std::vector<Arc> v;
|
| 2649 |
2596 |
for(OutArcIt e(_g,n);e!=INVALID;++e) v.push_back(e);
|
| ... |
... |
@@ -2670,97 +2617,97 @@
|
| 2670 |
2617 |
///Find an arc between two nodes.
|
| 2671 |
2618 |
|
| 2672 |
2619 |
///Find an arc between two nodes in time <em>O(</em>log<em>d)</em>, where
|
| 2673 |
2620 |
/// <em>d</em> is the number of outgoing arcs of \c s.
|
| 2674 |
2621 |
///\param s The source node
|
| 2675 |
2622 |
///\param t The target node
|
| 2676 |
2623 |
///\return An arc from \c s to \c t if there exists,
|
| 2677 |
2624 |
///\ref INVALID otherwise.
|
| 2678 |
2625 |
///
|
| 2679 |
2626 |
///\warning If you change the digraph, refresh() must be called before using
|
| 2680 |
2627 |
///this operator. If you change the outgoing arcs of
|
| 2681 |
2628 |
///a single node \c n, then
|
| 2682 |
2629 |
///\ref refresh(Node) "refresh(n)" is enough.
|
| 2683 |
2630 |
///
|
| 2684 |
2631 |
Arc operator()(Node s, Node t) const
|
| 2685 |
2632 |
{
|
| 2686 |
2633 |
Arc e;
|
| 2687 |
2634 |
for(e=_head[s];
|
| 2688 |
2635 |
e!=INVALID&&_g.target(e)!=t;
|
| 2689 |
2636 |
e = t < _g.target(e)?_left[e]:_right[e]) ;
|
| 2690 |
2637 |
return e;
|
| 2691 |
2638 |
}
|
| 2692 |
2639 |
|
| 2693 |
2640 |
};
|
| 2694 |
2641 |
|
| 2695 |
2642 |
///Fast look up of all arcs between given endpoints.
|
| 2696 |
2643 |
|
| 2697 |
2644 |
///\ingroup gutils
|
| 2698 |
2645 |
///This class is the same as \ref ArcLookUp, with the addition
|
| 2699 |
2646 |
///that it makes it possible to find all arcs between given endpoints.
|
| 2700 |
2647 |
///
|
| 2701 |
2648 |
///\warning This class is static, so you should refresh() (or at least
|
| 2702 |
2649 |
///refresh(Node)) this data structure
|
| 2703 |
2650 |
///whenever the digraph changes. This is a time consuming (superlinearly
|
| 2704 |
2651 |
///proportional (<em>O(m</em>log<em>m)</em>) to the number of arcs).
|
| 2705 |
2652 |
///
|
| 2706 |
2653 |
///\param G The type of the underlying digraph.
|
| 2707 |
2654 |
///
|
| 2708 |
2655 |
///\sa DynArcLookUp
|
| 2709 |
2656 |
///\sa ArcLookUp
|
| 2710 |
2657 |
template<class G>
|
| 2711 |
2658 |
class AllArcLookUp : public ArcLookUp<G>
|
| 2712 |
2659 |
{
|
| 2713 |
2660 |
using ArcLookUp<G>::_g;
|
| 2714 |
2661 |
using ArcLookUp<G>::_right;
|
| 2715 |
2662 |
using ArcLookUp<G>::_left;
|
| 2716 |
2663 |
using ArcLookUp<G>::_head;
|
| 2717 |
2664 |
|
| 2718 |
|
DIGRAPH_TYPEDEFS(G);
|
|
2665 |
TEMPLATE_DIGRAPH_TYPEDEFS(G);
|
| 2719 |
2666 |
typedef G Digraph;
|
| 2720 |
2667 |
|
| 2721 |
2668 |
typename Digraph::template ArcMap<Arc> _next;
|
| 2722 |
2669 |
|
| 2723 |
2670 |
Arc refreshNext(Arc head,Arc next=INVALID)
|
| 2724 |
2671 |
{
|
| 2725 |
2672 |
if(head==INVALID) return next;
|
| 2726 |
2673 |
else {
|
| 2727 |
2674 |
next=refreshNext(_right[head],next);
|
| 2728 |
2675 |
// _next[head]=next;
|
| 2729 |
2676 |
_next[head]=( next!=INVALID && _g.target(next)==_g.target(head))
|
| 2730 |
2677 |
? next : INVALID;
|
| 2731 |
2678 |
return refreshNext(_left[head],head);
|
| 2732 |
2679 |
}
|
| 2733 |
2680 |
}
|
| 2734 |
2681 |
|
| 2735 |
2682 |
void refreshNext()
|
| 2736 |
2683 |
{
|
| 2737 |
2684 |
for(NodeIt n(_g);n!=INVALID;++n) refreshNext(_head[n]);
|
| 2738 |
2685 |
}
|
| 2739 |
2686 |
|
| 2740 |
2687 |
public:
|
| 2741 |
2688 |
///Constructor
|
| 2742 |
2689 |
|
| 2743 |
2690 |
///Constructor.
|
| 2744 |
2691 |
///
|
| 2745 |
2692 |
///It builds up the search database, which remains valid until the digraph
|
| 2746 |
2693 |
///changes.
|
| 2747 |
2694 |
AllArcLookUp(const Digraph &g) : ArcLookUp<G>(g), _next(g) {refreshNext();}
|
| 2748 |
2695 |
|
| 2749 |
2696 |
///Refresh the data structure at a node.
|
| 2750 |
2697 |
|
| 2751 |
2698 |
///Build up the search database of node \c n.
|
| 2752 |
2699 |
///
|
| 2753 |
2700 |
///It runs in time <em>O(d</em>log<em>d)</em>, where <em>d</em> is
|
| 2754 |
2701 |
///the number of the outgoing arcs of \c n.
|
| 2755 |
2702 |
|
| 2756 |
2703 |
void refresh(Node n)
|
| 2757 |
2704 |
{
|
| 2758 |
2705 |
ArcLookUp<G>::refresh(n);
|
| 2759 |
2706 |
refreshNext(_head[n]);
|
| 2760 |
2707 |
}
|
| 2761 |
2708 |
|
| 2762 |
2709 |
///Refresh the full data structure.
|
| 2763 |
2710 |
|
| 2764 |
2711 |
///Build up the full search database. In fact, it simply calls
|
| 2765 |
2712 |
///\ref refresh(Node) "refresh(n)" for each node \c n.
|
| 2766 |
2713 |
///
|