lib/graphs: introduce `show_dot` for debugging digraphs.
[nit.git] / lib / graphs / digraph.nit
1 # This file is part of NIT (http://www.nitlanguage.org).
2 #
3 # Copyright 2015 Alexandre Blondin Massé <blondin_masse.alexandre@uqam.ca>
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 # http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16
17 # Implementation of directed graphs, also called digraphs.
18 #
19 # Overview
20 # ========
21 #
22 # This module provides a simple interface together with a concrete
23 # implementation of directed graphs (or digraphs).
24 #
25 # The upper level interface is `Digraph` and contains all methods for digraphs
26 # that do not depend on the underlying data structure. More precisely, if basic
27 # operations such as `predecessors`, `successors`, `num_vertices`, etc. are
28 # implemented, then high level operations (such as computing the connected
29 # components or a shortest path between two vertices) can be easily derived.
30 # Also, all methods found in `Digraph` do no modify the graph. For mutable
31 # methods, one needs to check the `MutableDigraph` child class. Vertices can be
32 # any `Object`, but there is no information stored in the arcs, which are
33 # simple arrays of the form `[u,v]`, where `u` is the source of the arc and `v`
34 # is the target.
35 #
36 # There is currently only one concrete implementation named `HashDigraph` that
37 # makes use of the HashMap class for storing the predecessors and successors.
38 # It is therefore simple to provide another implementation: One only has to
39 # create a concrete specialization of either `Digraph` or `MutableDigraph`.
40 #
41 # Basic methods
42 # =============
43 #
44 # To create an (empty) new graph whose keys are integers, one simply type
45 # ~~~
46 # import digraph
47 # var g = new HashDigraph[Int]
48 # ~~~
49 #
50 # Then we can add vertices and arcs. Note that if an arc is added whose source
51 # and target are not already in the digraph, the vertices are added beforehand.
52 # ~~~
53 # import digraph
54 # var g = new HashDigraph[Int]
55 # g.add_vertex(0)
56 # g.add_vertex(1)
57 # g.add_arc(0,1)
58 # g.add_arc(1,2)
59 # assert g.to_s == "Digraph of 3 vertices and 2 arcs"
60 # ~~~
61 #
62 # One might also create digraphs with strings in vertices, for instance to
63 # represent some directed relation. However, it is currently not possible to
64 # store values in the arcs.
65 # ~~~
66 # import digraph
67 # var g = new HashDigraph[String]
68 # g.add_vertex("Amy")
69 # g.add_vertex("Bill")
70 # g.add_vertex("Chris")
71 # g.add_vertex("Diane")
72 # g.add_arc("Amy", "Bill") # Amy likes Bill
73 # g.add_arc("Bill", "Amy") # Bill likes Amy
74 # g.add_arc("Chris", "Diane") # and so on
75 # g.add_arc("Diane", "Amy") # and so on
76 # ~~~
77 #
78 # `HashDigraph`s are mutable, i.e. one might remove arcs and/or vertices:
79 # ~~~
80 # import digraph
81 # var g = new HashDigraph[Int]
82 # g.add_arc(0,1)
83 # g.add_arc(0,2)
84 # g.add_arc(1,2)
85 # g.add_arc(2,3)
86 # g.add_arc(2,4)
87 # g.remove_vertex(1)
88 # g.remove_arc(2, 4)
89 # assert g.to_s == "Digraph of 4 vertices and 2 arcs"
90 # ~~~
91 #
92 # If one has installed [Graphviz](http://graphviz.org), it is easy to produce a
93 # *dot* file which Graphviz process into a picture:
94 # ~~~
95 # import digraph
96 # var g = new HashDigraph[Int]
97 # g.add_arcs([[0,1],[0,2],[1,2],[2,3],[2,4]])
98 # print g.to_dot
99 # # Then call "dot -Tpng -o graph.png"
100 # ~~~
101 #
102 # ![A graph drawing produced by Graphviz](https://github.com/nitlang/nit/blob/master/lib/graph.png)
103 #
104 # Other methods
105 # =============
106 #
107 # There exist other methods available for digraphs and many other will be
108 # implemented in the future. For more details, one should look at the methods
109 # directly. For instance, the [strongly connected components]
110 # (https://en.wikipedia.org/wiki/Strongly_connected_component) of a digraph are
111 # returned as a [disjoint set data structure]
112 # (https://en.wikipedia.org/wiki/Disjoint-set_data_structure) (i.e. a set of
113 # sets):
114 # ~~~
115 # import digraph
116 # var g = new HashDigraph[Int]
117 # g.add_arcs([[1,2],[2,1],[2,3],[3,4],[4,5],[5,3]])
118 # for component in g.strongly_connected_components.to_partitions
119 # do
120 # print component
121 # end
122 # # Prints [1,2] and [3,4,5]
123 # ~~~
124 #
125 # It is also possible to compute a shortest (directed) path between two
126 # vertices:
127 # ~~~
128 # import digraph
129 # var g = new HashDigraph[Int]
130 # g.add_arcs([[1,2],[2,1],[2,3],[3,4],[4,5],[5,3]])
131 # var path = g.a_shortest_path(2, 4)
132 # if path != null then print path else print "No path"
133 # # Prints [2,3,4]
134 # path = g.a_shortest_path(4, 2)
135 # if path != null then print path else print "No path"
136 # # Prints "No path"
137 # ~~~
138 #
139 # Extending the library
140 # =====================
141 #
142 # There are at least two ways of providing new methods on digraphs. If the
143 # method is standard and could be useful to other users, you should consider
144 # including your implementation directly in this library.
145 #
146 # Otherwise, for personal use, you should simply define a new class inheriting
147 # from `HashDigraph` and add the new services.
148 module digraph
149
150 # Interface for digraphs
151 interface Digraph[V: Object]
152
153 ## ---------------- ##
154 ## Abstract methods ##
155 ## ---------------- ##
156
157 # The number of vertices in this graph.
158 #
159 # ~~~
160 # import digraph
161 # var g = new HashDigraph[Int]
162 # g.add_vertex(0)
163 # g.add_vertex(1)
164 # assert g.num_vertices == 2
165 # g.add_vertex(0)
166 # assert g.num_vertices == 2
167 # ~~~
168 fun num_vertices: Int is abstract
169
170 # The number of arcs in this graph.
171 #
172 # ~~~
173 # import digraph
174 # var g = new HashDigraph[Int]
175 # g.add_arc(0, 1)
176 # assert g.num_arcs == 1
177 # g.add_arc(0, 1)
178 # assert g.num_arcs == 1
179 # g.add_arc(2, 3)
180 # assert g.num_arcs == 2
181 # ~~~
182 fun num_arcs: Int is abstract
183
184 # Returns true if and only if `u` exists in this graph.
185 #
186 # ~~~
187 # import digraph
188 # var g = new HashDigraph[Int]
189 # g.add_vertex(1)
190 # assert g.has_vertex(1)
191 # assert not g.has_vertex(0)
192 # g.add_vertex(1)
193 # assert g.has_vertex(1)
194 # assert not g.has_vertex(0)
195 # ~~~
196 fun has_vertex(u: V): Bool is abstract
197
198 # Returns true if and only if `(u,v)` is an arc in this graph.
199 #
200 # ~~~
201 # import digraph
202 # var g = new HashDigraph[Int]
203 # g.add_arc(0, 1)
204 # g.add_arc(1, 2)
205 # assert g.has_arc(0, 1)
206 # assert g.has_arc(1, 2)
207 # assert not g.has_arc(0, 2)
208 # ~~~
209 fun has_arc(u, v: V): Bool is abstract
210
211 # Returns the predecessors of `u`.
212 #
213 # If `u` does not exist, then it returns null.
214 #
215 # ~~~
216 # import digraph
217 # var g = new HashDigraph[Int]
218 # g.add_arc(0, 1)
219 # g.add_arc(1, 2)
220 # g.add_arc(0, 2)
221 # assert g.predecessors(2).has(0)
222 # assert g.predecessors(2).has(1)
223 # assert not g.predecessors(2).has(2)
224 # ~~~
225 fun predecessors(u: V): Collection[V] is abstract
226
227 # Returns the successors of `u`.
228 #
229 # If `u` does not exist, then an empty collection is returned.
230 #
231 # ~~~
232 # import digraph
233 # var g = new HashDigraph[Int]
234 # g.add_arc(0, 1)
235 # g.add_arc(1, 2)
236 # g.add_arc(0, 2)
237 # assert not g.successors(0).has(0)
238 # assert g.successors(0).has(1)
239 # assert g.successors(0).has(2)
240 # ~~~
241 fun successors(u: V): Collection[V] is abstract
242
243 # Returns an iterator over the vertices of this graph.
244 #
245 # ~~~
246 # import digraph
247 # var g = new HashDigraph[Int]
248 # g.add_arc(0, 1)
249 # g.add_arc(0, 2)
250 # g.add_arc(1, 2)
251 # var vs = new HashSet[Int]
252 # for v in g.vertices_iterator do vs.add(v)
253 # assert vs == new HashSet[Int].from([0,1,2])
254 # ~~~
255 fun vertices_iterator: Iterator[V] is abstract
256
257 ## -------------------- ##
258 ## Non abstract methods ##
259 ## -------------------- ##
260
261 ## ------------- ##
262 ## Basic methods ##
263 ## ------------- ##
264
265 # Returns true if and only if this graph is empty.
266 #
267 # An empty graph is a graph without vertex and arc.
268 #
269 # ~~~
270 # import digraph
271 # assert (new HashDigraph[Int]).is_empty
272 # ~~~
273 fun is_empty: Bool do return num_vertices == 0 and num_arcs == 0
274
275 # Returns an array containing the vertices of this graph.
276 #
277 # ~~~
278 # import digraph
279 # var g = new HashDigraph[Int]
280 # g.add_vertices([0,2,4,5])
281 # assert g.vertices.length == 4
282 # ~~~
283 fun vertices: Array[V] do return [for u in vertices_iterator do u]
284
285 # Returns an iterator over the arcs of this graph
286 #
287 # ~~~
288 # import digraph
289 # var g = new HashDigraph[Int]
290 # g.add_arc(0, 1)
291 # g.add_arc(0, 2)
292 # g.add_arc(1, 2)
293 # for arc in g.arcs_iterator do
294 # assert g.has_arc(arc[0], arc[1])
295 # end
296 # ~~~
297 fun arcs_iterator: Iterator[Array[V]] do return new ArcsIterator[V](self)
298
299 # Returns the arcs of this graph.
300 #
301 # ~~~
302 # import digraph
303 # var g = new HashDigraph[Int]
304 # g.add_arc(1, 3)
305 # g.add_arc(2, 3)
306 # assert g.arcs.length == 2
307 # ~~~
308 fun arcs: Array[Array[V]] do return [for arc in arcs_iterator do arc]
309
310 # Returns the incoming arcs of vertex `u`.
311 #
312 # If `u` is not in this graph, an empty array is returned.
313 #
314 # ~~~
315 # import digraph
316 # var g = new HashDigraph[Int]
317 # g.add_arc(1, 3)
318 # g.add_arc(2, 3)
319 # for arc in g.incoming_arcs(3) do
320 # assert g.is_predecessor(arc[0], arc[1])
321 # end
322 # ~~~
323 fun incoming_arcs(u: V): Collection[Array[V]]
324 do
325 if has_vertex(u) then
326 return [for v in predecessors(u) do [v, u]]
327 else
328 return new Array[Array[V]]
329 end
330 end
331
332 # Returns the outgoing arcs of vertex `u`.
333 #
334 # If `u` is not in this graph, an empty array is returned.
335 #
336 # ~~~
337 # import digraph
338 # var g = new HashDigraph[Int]
339 # g.add_arc(1, 3)
340 # g.add_arc(2, 3)
341 # g.add_arc(1, 2)
342 # for arc in g.outgoing_arcs(1) do
343 # assert g.is_successor(arc[1], arc[0])
344 # end
345 # ~~~
346 fun outgoing_arcs(u: V): Collection[Array[V]]
347 do
348 if has_vertex(u) then
349 return [for v in successors(u) do [u, v]]
350 else
351 return new Array[Array[V]]
352 end
353 end
354
355 ## ---------------------- ##
356 ## String representations ##
357 ## ---------------------- ##
358
359 redef fun to_s
360 do
361 var vertex_word = "vertices"
362 var arc_word = "arcs"
363 if num_vertices <= 1 then vertex_word = "vertex"
364 if num_arcs <= 1 then arc_word = "arc"
365 return "Digraph of {num_vertices} {vertex_word} and {num_arcs} {arc_word}"
366 end
367
368 # Returns a GraphViz string representing this digraph.
369 fun to_dot: String
370 do
371 var s = "digraph \{\n"
372 # Writing the vertices
373 for u in vertices_iterator do
374 s += " \"{u.to_s.escape_to_dot}\" "
375 s += "[label=\"{u.to_s.escape_to_dot}\"];\n"
376 end
377 # Writing the arcs
378 for arc in arcs do
379 s += " {arc[0].to_s.escape_to_dot} "
380 s += "-> {arc[1].to_s.escape_to_dot};"
381 end
382 s += "\}"
383 return s
384 end
385
386 # Open Graphviz with `self.to_dot`.
387 #
388 # Mainly used for debugging.
389 fun show_dot do
390 var f = new ProcessWriter("dot", "-Txlib")
391 f.write to_dot
392 f.close
393 end
394
395 ## ------------ ##
396 ## Neighborhood ##
397 ## ------------ ##
398
399 # Returns true if and only if `u` is a predecessor of `v`.
400 #
401 # ~~~
402 # import digraph
403 # var g = new HashDigraph[Int]
404 # g.add_arc(1, 3)
405 # assert g.is_predecessor(1, 3)
406 # assert not g.is_predecessor(3, 1)
407 # ~~~
408 fun is_predecessor(u, v: V): Bool do return has_arc(u, v)
409
410 # Returns true if and only if `u` is a successor of `v`.
411 #
412 # ~~~
413 # import digraph
414 # var g = new HashDigraph[Int]
415 # g.add_arc(1, 3)
416 # assert not g.is_successor(1, 3)
417 # assert g.is_successor(3, 1)
418 # ~~~
419 fun is_successor(u, v: V): Bool do return has_arc(v, u)
420
421 # Returns the number of arcs whose target is `u`.
422 #
423 # ~~~
424 # import digraph
425 # var g = new HashDigraph[Int]
426 # g.add_arc(1, 3)
427 # g.add_arc(2, 3)
428 # assert g.in_degree(3) == 2
429 # assert g.in_degree(1) == 0
430 # ~~~
431 fun in_degree(u: V): Int do return predecessors(u).length
432
433 # Returns the number of arcs whose source is `u`.
434 #
435 # ~~~
436 # import digraph
437 # var g = new HashDigraph[Int]
438 # g.add_arc(1, 2)
439 # g.add_arc(1, 3)
440 # g.add_arc(2, 3)
441 # assert g.out_degree(3) == 0
442 # assert g.out_degree(1) == 2
443 # ~~~
444 fun out_degree(u: V): Int do return successors(u).length
445
446 # ------------------ #
447 # Paths and circuits #
448 # ------------------ #
449
450 # Returns true if and only if `vertices` is a path of this digraph.
451 #
452 # ~~~
453 # import digraph
454 # var g = new HashDigraph[Int]
455 # g.add_arc(1, 2)
456 # g.add_arc(2, 3)
457 # g.add_arc(3, 4)
458 # assert g.has_path([1,2,3])
459 # assert not g.has_path([1,3,3])
460 # ~~~
461 fun has_path(vertices: SequenceRead[V]): Bool
462 do
463 for i in [0..vertices.length - 1[ do
464 if not has_arc(vertices[i], vertices[i + 1]) then return false
465 end
466 return true
467 end
468
469 # Returns true if and only if `vertices` is a circuit of this digraph.
470 #
471 # ~~~
472 # import digraph
473 # var g = new HashDigraph[Int]
474 # g.add_arc(1, 2)
475 # g.add_arc(2, 3)
476 # g.add_arc(3, 1)
477 # assert g.has_circuit([1,2,3,1])
478 # assert not g.has_circuit([1,3,2,1])
479 # ~~~
480 fun has_circuit(vertices: SequenceRead[V]): Bool
481 do
482 return vertices.is_empty or (has_path(vertices) and vertices.first == vertices.last)
483 end
484
485 # Returns a shortest path from vertex `u` to `v`.
486 #
487 # If no path exists between `u` and `v`, it returns `null`.
488 #
489 # ~~~
490 # import digraph
491 # var g = new HashDigraph[Int]
492 # g.add_arc(1, 2)
493 # g.add_arc(2, 3)
494 # g.add_arc(3, 4)
495 # assert g.a_shortest_path(1, 4).length == 4
496 # g.add_arc(1, 3)
497 # assert g.a_shortest_path(1, 4).length == 3
498 # assert g.a_shortest_path(4, 1) == null
499 # ~~~
500 fun a_shortest_path(u, v: V): nullable Sequence[V]
501 do
502 var queue = new List[V].from([u]).as_fifo
503 var pred = new HashMap[V, nullable V]
504 var visited = new HashSet[V]
505 var w: nullable V = null
506 pred[u] = null
507 while not queue.is_empty do
508 w = queue.take
509 if not visited.has(w) then
510 visited.add(w)
511 if w == v then break
512 for wp in successors(w) do
513 if not pred.keys.has(wp) then
514 queue.add(wp)
515 pred[wp] = w
516 end
517 end
518 end
519 end
520 if w != v then
521 return null
522 else
523 var path = new List[V]
524 path.add(v)
525 w = v
526 while pred[w] != null do
527 path.unshift(pred[w].as(not null))
528 w = pred[w]
529 end
530 return path
531 end
532 end
533
534 # Returns the distance between `u` and `v`
535 #
536 # If no path exists between `u` and `v`, it returns null. It is not
537 # symmetric, i.e. we may have `dist(u, v) != dist(v, u)`.
538 #
539 # ~~~
540 # import digraph
541 # var g = new HashDigraph[Int]
542 # g.add_arc(1, 2)
543 # g.add_arc(2, 3)
544 # g.add_arc(3, 4)
545 # assert g.distance(1, 4) == 3
546 # g.add_arc(1, 3)
547 # assert g.distance(1, 4) == 2
548 # assert g.distance(4, 1) == null
549 # ~~~
550 fun distance(u, v: V): nullable Int
551 do
552 var queue = new List[V].from([u]).as_fifo
553 var dist = new HashMap[V, Int]
554 var visited = new HashSet[V]
555 var w: nullable V
556 dist[u] = 0
557 while not queue.is_empty do
558 w = queue.take
559 if not visited.has(w) then
560 visited.add(w)
561 if w == v then break
562 for wp in successors(w) do
563 if not dist.keys.has(wp) then
564 queue.add(wp)
565 dist[wp] = dist[w] + 1
566 end
567 end
568 end
569 end
570 return dist.get_or_null(v)
571 end
572
573 # -------------------- #
574 # Connected components #
575 # -------------------- #
576
577 # Returns the weak connected components of this digraph.
578 #
579 # The weak connected components of a digraph are the usual
580 # connected components of its associated undirected graph,
581 # i.e. the graph obtained by replacing each arc by an edge.
582 #
583 # ~~~
584 # import digraph
585 # var g = new HashDigraph[Int]
586 # g.add_arc(1, 2)
587 # g.add_arc(2, 3)
588 # g.add_arc(4, 5)
589 # assert g.weakly_connected_components.number_of_subsets == 2
590 # ~~~
591 fun weakly_connected_components: DisjointSet[V]
592 do
593 var components = new DisjointSet[V]
594 components.add_all(vertices)
595 for arc in arcs_iterator do
596 components.union(arc[0], arc[1])
597 end
598 return components
599 end
600
601 # Returns the strongly connected components of this digraph.
602 #
603 # Two vertices `u` and `v` belong to the same strongly connected
604 # component if and only if there exists a path from `u` to `v`
605 # and there exists a path from `v` to `u`.
606 #
607 # This is computed in linear time (Tarjan's algorithm).
608 #
609 # ~~~
610 # import digraph
611 # var g = new HashDigraph[Int]
612 # g.add_arc(1, 2)
613 # g.add_arc(2, 3)
614 # g.add_arc(3, 1)
615 # g.add_arc(3, 4)
616 # g.add_arc(4, 5)
617 # g.add_arc(5, 6)
618 # g.add_arc(6, 5)
619 # assert g.strongly_connected_components.number_of_subsets == 3
620 # ~~~
621 fun strongly_connected_components: DisjointSet[V]
622 do
623 var tarjanAlgorithm = new TarjanAlgorithm[V](self)
624 return tarjanAlgorithm.strongly_connected_components
625 end
626 end
627
628 # Computing the strongly connected components using Tarjan's algorithm
629 private class TarjanAlgorithm[V: Object]
630 # The graph whose strongly connected components will be computed
631 var graph: Digraph[V]
632 # The strongly connected components computed in Tarjan's algorithm
633 var sccs = new DisjointSet[V]
634 # An index used for Tarjan's algorithm
635 var index = 0
636 # A stack used for Tarjan's algorithm
637 var stack: Queue[V] = (new Array[V]).as_lifo
638 # A map associating with each vertex its index
639 var vertex_to_index = new HashMap[V, Int]
640 # A map associating with each vertex its ancestor in Tarjan's algorithm
641 var ancestor = new HashMap[V, Int]
642 # True if and only if the vertex is in the stack
643 var in_stack = new HashSet[V]
644
645 # Returns the strongly connected components of a graph
646 fun strongly_connected_components: DisjointSet[V]
647 do
648 for u in graph.vertices_iterator do sccs.add(u)
649 for v in graph.vertices_iterator do
650 visit(v)
651 end
652 return sccs
653 end
654
655 # The recursive part of Tarjan's algorithm
656 fun visit(u: V)
657 do
658 vertex_to_index[u] = index
659 ancestor[u] = index
660 index += 1
661 stack.add(u)
662 in_stack.add(u)
663 for v in graph.successors(u) do
664 if not vertex_to_index.keys.has(v) then
665 visit(v)
666 ancestor[u] = ancestor[u].min(ancestor[v])
667 else if in_stack.has(v) then
668 ancestor[u] = ancestor[u].min(vertex_to_index[v])
669 end
670 end
671 if vertex_to_index[u] == ancestor[u] then
672 var v
673 loop
674 v = stack.take
675 in_stack.remove(v)
676 sccs.union(u, v)
677 if u == v then break
678 end
679 end
680 end
681 end
682
683 # Arcs iterator
684 class ArcsIterator[V: Object]
685 super Iterator[Array[V]]
686
687 # The graph whose arcs are iterated over
688 var graph: Digraph[V]
689 # Attributes
690 #
691 private var sources_iterator: Iterator[V] is noinit
692 private var targets_iterator: Iterator[V] is noinit
693 init
694 do
695 sources_iterator = graph.vertices_iterator
696 if sources_iterator.is_ok then
697 targets_iterator = graph.successors(sources_iterator.item).iterator
698 if not targets_iterator.is_ok then update_iterators
699 end
700 end
701
702 redef fun is_ok do return sources_iterator.is_ok and targets_iterator.is_ok
703
704 redef fun item do return [sources_iterator.item, targets_iterator.item]
705
706 redef fun next
707 do
708 targets_iterator.next
709 update_iterators
710 end
711
712 private fun update_iterators
713 do
714 while not targets_iterator.is_ok and sources_iterator.is_ok
715 do
716 sources_iterator.next
717 if sources_iterator.is_ok then
718 targets_iterator = graph.successors(sources_iterator.item).iterator
719 end
720 end
721 end
722 end
723
724 # Mutable digraph
725 abstract class MutableDigraph[V: Object]
726 super Digraph[V]
727
728 ## ---------------- ##
729 ## Abstract methods ##
730 ## ---------------- ##
731
732 # Adds the vertex `u` to this graph.
733 #
734 # If `u` already belongs to the graph, then nothing happens.
735 #
736 # ~~~
737 # import digraph
738 # var g = new HashDigraph[Int]
739 # g.add_vertex(0)
740 # assert g.has_vertex(0)
741 # assert not g.has_vertex(1)
742 # g.add_vertex(1)
743 # assert g.num_vertices == 2
744 # ~~~
745 fun add_vertex(u: V) is abstract
746
747 # Removes the vertex `u` from this graph and all its incident arcs.
748 #
749 # If the vertex does not exist in the graph, then nothing happens.
750 #
751 # ~~~
752 # import digraph
753 # var g = new HashDigraph[Int]
754 # g.add_vertex(0)
755 # g.add_vertex(1)
756 # assert g.has_vertex(0)
757 # g.remove_vertex(0)
758 # assert not g.has_vertex(0)
759 # ~~~
760 fun remove_vertex(u: V) is abstract
761
762 # Adds the arc `(u,v)` to this graph.
763 #
764 # If there is already an arc from `u` to `v` in this graph, then
765 # nothing happens. If vertex `u` or vertex `v` do not exist in the
766 # graph, they are added.
767 #
768 # ~~~
769 # import digraph
770 # var g = new HashDigraph[Int]
771 # g.add_arc(0, 1)
772 # g.add_arc(1, 2)
773 # assert g.has_arc(0, 1)
774 # assert g.has_arc(1, 2)
775 # assert not g.has_arc(1, 0)
776 # g.add_arc(1, 2)
777 # assert g.num_arcs == 2
778 # ~~~
779 fun add_arc(u, v: V) is abstract
780
781 # Removes the arc `(u,v)` from this graph.
782 #
783 # If the arc does not exist in the graph, then nothing happens.
784 #
785 # ~~~
786 # import digraph
787 # var g = new HashDigraph[Int]
788 # g.add_arc(0, 1)
789 # assert g.num_arcs == 1
790 # g.remove_arc(0, 1)
791 # assert g.num_arcs == 0
792 # g.remove_arc(0, 1)
793 # assert g.num_arcs == 0
794 # ~~~
795 fun remove_arc(u, v: V) is abstract
796
797 ## -------------------- ##
798 ## Non abstract methods ##
799 ## -------------------- ##
800
801 # Adds all vertices of `vertices` to this digraph.
802 #
803 # If vertices appear more than once, they are only added once.
804 #
805 # ~~~
806 # import digraph
807 # var g = new HashDigraph[Int]
808 # g.add_vertices([0,1,2,3])
809 # assert g.num_vertices == 4
810 # g.add_vertices([2,3,4,5])
811 # assert g.num_vertices == 6
812 # ~~~
813 fun add_vertices(vertices: Collection[V])
814 do
815 for u in vertices do add_vertex(u)
816 end
817
818 # Adds all arcs of `arcs` to this digraph.
819 #
820 # If arcs appear more than once, they are only added once.
821 #
822 # ~~~
823 # import digraph
824 # var g = new HashDigraph[Int]
825 # var arcs = [[0,1], [1,2], [1,2]]
826 # g.add_arcs(arcs)
827 # assert g.num_arcs == 2
828 # ~~~
829 fun add_arcs(arcs: Collection[Array[V]])
830 do
831 for a in arcs do add_arc(a[0], a[1])
832 end
833 end
834 # A directed graph represented by hash maps
835 class HashDigraph[V: Object]
836 super MutableDigraph[V]
837
838 # Attributes
839 #
840 private var incoming_vertices_map = new HashMap[V, Array[V]]
841 private var outgoing_vertices_map = new HashMap[V, Array[V]]
842 private var number_of_arcs = 0
843
844 redef fun num_vertices do return outgoing_vertices_map.keys.length end
845
846 redef fun num_arcs do return number_of_arcs end
847
848 redef fun add_vertex(u)
849 do
850 if not has_vertex(u) then
851 incoming_vertices_map[u] = new Array[V]
852 outgoing_vertices_map[u] = new Array[V]
853 end
854 end
855
856 redef fun has_vertex(u) do return outgoing_vertices_map.keys.has(u)
857
858 redef fun remove_vertex(u)
859 do
860 if has_vertex(u) then
861 for v in successors(u) do
862 remove_arc(u, v)
863 end
864 for v in predecessors(u) do
865 remove_arc(v, u)
866 end
867 incoming_vertices_map.keys.remove(u)
868 outgoing_vertices_map.keys.remove(u)
869 end
870 end
871
872 redef fun add_arc(u, v)
873 do
874 if not has_vertex(u) then add_vertex(u)
875 if not has_vertex(v) then add_vertex(v)
876 if not has_arc(u, v) then
877 incoming_vertices_map[v].add(u)
878 outgoing_vertices_map[u].add(v)
879 number_of_arcs += 1
880 end
881 end
882
883 redef fun has_arc(u, v)
884 do
885 return outgoing_vertices_map[u].has(v)
886 end
887
888 redef fun remove_arc(u, v)
889 do
890 if has_arc(u, v) then
891 outgoing_vertices_map[u].remove(v)
892 incoming_vertices_map[v].remove(u)
893 number_of_arcs -= 1
894 end
895 end
896
897 redef fun predecessors(u): Array[V]
898 do
899 if incoming_vertices_map.keys.has(u) then
900 return incoming_vertices_map[u].clone
901 else
902 return new Array[V]
903 end
904 end
905
906 redef fun successors(u): Array[V]
907 do
908 if outgoing_vertices_map.keys.has(u) then
909 return outgoing_vertices_map[u].clone
910 else
911 return new Array[V]
912 end
913 end
914
915 redef fun vertices_iterator: Iterator[V] do return outgoing_vertices_map.keys.iterator
916 end