0b74c4cd7de47a2f1b69231d589d1a1eed2aa1f6
[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 ## ------------ ##
387 ## Neighborhood ##
388 ## ------------ ##
389
390 # Returns true if and only if `u` is a predecessor of `v`.
391 #
392 # ~~~
393 # import digraph
394 # var g = new HashDigraph[Int]
395 # g.add_arc(1, 3)
396 # assert g.is_predecessor(1, 3)
397 # assert not g.is_predecessor(3, 1)
398 # ~~~
399 fun is_predecessor(u, v: V): Bool do return has_arc(u, v)
400
401 # Returns true if and only if `u` is a successor of `v`.
402 #
403 # ~~~
404 # import digraph
405 # var g = new HashDigraph[Int]
406 # g.add_arc(1, 3)
407 # assert not g.is_successor(1, 3)
408 # assert g.is_successor(3, 1)
409 # ~~~
410 fun is_successor(u, v: V): Bool do return has_arc(v, u)
411
412 # Returns the number of arcs whose target is `u`.
413 #
414 # ~~~
415 # import digraph
416 # var g = new HashDigraph[Int]
417 # g.add_arc(1, 3)
418 # g.add_arc(2, 3)
419 # assert g.in_degree(3) == 2
420 # assert g.in_degree(1) == 0
421 # ~~~
422 fun in_degree(u: V): Int do return predecessors(u).length
423
424 # Returns the number of arcs whose source is `u`.
425 #
426 # ~~~
427 # import digraph
428 # var g = new HashDigraph[Int]
429 # g.add_arc(1, 2)
430 # g.add_arc(1, 3)
431 # g.add_arc(2, 3)
432 # assert g.out_degree(3) == 0
433 # assert g.out_degree(1) == 2
434 # ~~~
435 fun out_degree(u: V): Int do return successors(u).length
436
437 # ------------------ #
438 # Paths and circuits #
439 # ------------------ #
440
441 # Returns true if and only if `vertices` is a path of this digraph.
442 #
443 # ~~~
444 # import digraph
445 # var g = new HashDigraph[Int]
446 # g.add_arc(1, 2)
447 # g.add_arc(2, 3)
448 # g.add_arc(3, 4)
449 # assert g.has_path([1,2,3])
450 # assert not g.has_path([1,3,3])
451 # ~~~
452 fun has_path(vertices: SequenceRead[V]): Bool
453 do
454 for i in [0..vertices.length - 1[ do
455 if not has_arc(vertices[i], vertices[i + 1]) then return false
456 end
457 return true
458 end
459
460 # Returns true if and only if `vertices` is a circuit of this digraph.
461 #
462 # ~~~
463 # import digraph
464 # var g = new HashDigraph[Int]
465 # g.add_arc(1, 2)
466 # g.add_arc(2, 3)
467 # g.add_arc(3, 1)
468 # assert g.has_circuit([1,2,3,1])
469 # assert not g.has_circuit([1,3,2,1])
470 # ~~~
471 fun has_circuit(vertices: SequenceRead[V]): Bool
472 do
473 return vertices.is_empty or (has_path(vertices) and vertices.first == vertices.last)
474 end
475
476 # Returns a shortest path from vertex `u` to `v`.
477 #
478 # If no path exists between `u` and `v`, it returns `null`.
479 #
480 # ~~~
481 # import digraph
482 # var g = new HashDigraph[Int]
483 # g.add_arc(1, 2)
484 # g.add_arc(2, 3)
485 # g.add_arc(3, 4)
486 # assert g.a_shortest_path(1, 4).length == 4
487 # g.add_arc(1, 3)
488 # assert g.a_shortest_path(1, 4).length == 3
489 # assert g.a_shortest_path(4, 1) == null
490 # ~~~
491 fun a_shortest_path(u, v: V): nullable Sequence[V]
492 do
493 var queue = new List[V].from([u]).as_fifo
494 var pred = new HashMap[V, nullable V]
495 var visited = new HashSet[V]
496 var w: nullable V = null
497 pred[u] = null
498 while not queue.is_empty do
499 w = queue.take
500 if not visited.has(w) then
501 visited.add(w)
502 if w == v then break
503 for wp in successors(w) do
504 if not pred.keys.has(wp) then
505 queue.add(wp)
506 pred[wp] = w
507 end
508 end
509 end
510 end
511 if w != v then
512 return null
513 else
514 var path = new List[V]
515 path.add(v)
516 w = v
517 while pred[w] != null do
518 path.unshift(pred[w].as(not null))
519 w = pred[w]
520 end
521 return path
522 end
523 end
524
525 # Returns the distance between `u` and `v`
526 #
527 # If no path exists between `u` and `v`, it returns null. It is not
528 # symmetric, i.e. we may have `dist(u, v) != dist(v, u)`.
529 #
530 # ~~~
531 # import digraph
532 # var g = new HashDigraph[Int]
533 # g.add_arc(1, 2)
534 # g.add_arc(2, 3)
535 # g.add_arc(3, 4)
536 # assert g.distance(1, 4) == 3
537 # g.add_arc(1, 3)
538 # assert g.distance(1, 4) == 2
539 # assert g.distance(4, 1) == null
540 # ~~~
541 fun distance(u, v: V): nullable Int
542 do
543 var queue = new List[V].from([u]).as_fifo
544 var dist = new HashMap[V, Int]
545 var visited = new HashSet[V]
546 var w: nullable V
547 dist[u] = 0
548 while not queue.is_empty do
549 w = queue.take
550 if not visited.has(w) then
551 visited.add(w)
552 if w == v then break
553 for wp in successors(w) do
554 if not dist.keys.has(wp) then
555 queue.add(wp)
556 dist[wp] = dist[w] + 1
557 end
558 end
559 end
560 end
561 return dist.get_or_null(v)
562 end
563
564 # -------------------- #
565 # Connected components #
566 # -------------------- #
567
568 # Returns the weak connected components of this digraph.
569 #
570 # The weak connected components of a digraph are the usual
571 # connected components of its associated undirected graph,
572 # i.e. the graph obtained by replacing each arc by an edge.
573 #
574 # ~~~
575 # import digraph
576 # var g = new HashDigraph[Int]
577 # g.add_arc(1, 2)
578 # g.add_arc(2, 3)
579 # g.add_arc(4, 5)
580 # assert g.weakly_connected_components.number_of_subsets == 2
581 # ~~~
582 fun weakly_connected_components: DisjointSet[V]
583 do
584 var components = new DisjointSet[V]
585 components.add_all(vertices)
586 for arc in arcs_iterator do
587 components.union(arc[0], arc[1])
588 end
589 return components
590 end
591
592 # Returns the strongly connected components of this digraph.
593 #
594 # Two vertices `u` and `v` belong to the same strongly connected
595 # component if and only if there exists a path from `u` to `v`
596 # and there exists a path from `v` to `u`.
597 #
598 # This is computed in linear time (Tarjan's algorithm).
599 #
600 # ~~~
601 # import digraph
602 # var g = new HashDigraph[Int]
603 # g.add_arc(1, 2)
604 # g.add_arc(2, 3)
605 # g.add_arc(3, 1)
606 # g.add_arc(3, 4)
607 # g.add_arc(4, 5)
608 # g.add_arc(5, 6)
609 # g.add_arc(6, 5)
610 # assert g.strongly_connected_components.number_of_subsets == 3
611 # ~~~
612 fun strongly_connected_components: DisjointSet[V]
613 do
614 var tarjanAlgorithm = new TarjanAlgorithm[V](self)
615 return tarjanAlgorithm.strongly_connected_components
616 end
617 end
618
619 # Computing the strongly connected components using Tarjan's algorithm
620 private class TarjanAlgorithm[V: Object]
621 # The graph whose strongly connected components will be computed
622 var graph: Digraph[V]
623 # The strongly connected components computed in Tarjan's algorithm
624 var sccs = new DisjointSet[V]
625 # An index used for Tarjan's algorithm
626 var index = 0
627 # A stack used for Tarjan's algorithm
628 var stack: Queue[V] = (new Array[V]).as_lifo
629 # A map associating with each vertex its index
630 var vertex_to_index = new HashMap[V, Int]
631 # A map associating with each vertex its ancestor in Tarjan's algorithm
632 var ancestor = new HashMap[V, Int]
633 # True if and only if the vertex is in the stack
634 var in_stack = new HashSet[V]
635
636 # Returns the strongly connected components of a graph
637 fun strongly_connected_components: DisjointSet[V]
638 do
639 for u in graph.vertices_iterator do sccs.add(u)
640 for v in graph.vertices_iterator do
641 visit(v)
642 end
643 return sccs
644 end
645
646 # The recursive part of Tarjan's algorithm
647 fun visit(u: V)
648 do
649 vertex_to_index[u] = index
650 ancestor[u] = index
651 index += 1
652 stack.add(u)
653 in_stack.add(u)
654 for v in graph.successors(u) do
655 if not vertex_to_index.keys.has(v) then
656 visit(v)
657 ancestor[u] = ancestor[u].min(ancestor[v])
658 else if in_stack.has(v) then
659 ancestor[u] = ancestor[u].min(vertex_to_index[v])
660 end
661 end
662 if vertex_to_index[u] == ancestor[u] then
663 var v
664 loop
665 v = stack.take
666 in_stack.remove(v)
667 sccs.union(u, v)
668 if u == v then break
669 end
670 end
671 end
672 end
673
674 # Arcs iterator
675 class ArcsIterator[V: Object]
676 super Iterator[Array[V]]
677
678 # The graph whose arcs are iterated over
679 var graph: Digraph[V]
680 # Attributes
681 #
682 private var sources_iterator: Iterator[V] is noinit
683 private var targets_iterator: Iterator[V] is noinit
684 init
685 do
686 sources_iterator = graph.vertices_iterator
687 if sources_iterator.is_ok then
688 targets_iterator = graph.successors(sources_iterator.item).iterator
689 if not targets_iterator.is_ok then update_iterators
690 end
691 end
692
693 redef fun is_ok do return sources_iterator.is_ok and targets_iterator.is_ok
694
695 redef fun item do return [sources_iterator.item, targets_iterator.item]
696
697 redef fun next
698 do
699 targets_iterator.next
700 update_iterators
701 end
702
703 private fun update_iterators
704 do
705 while not targets_iterator.is_ok and sources_iterator.is_ok
706 do
707 sources_iterator.next
708 if sources_iterator.is_ok then
709 targets_iterator = graph.successors(sources_iterator.item).iterator
710 end
711 end
712 end
713 end
714
715 # Mutable digraph
716 abstract class MutableDigraph[V: Object]
717 super Digraph[V]
718
719 ## ---------------- ##
720 ## Abstract methods ##
721 ## ---------------- ##
722
723 # Adds the vertex `u` to this graph.
724 #
725 # If `u` already belongs to the graph, then nothing happens.
726 #
727 # ~~~
728 # import digraph
729 # var g = new HashDigraph[Int]
730 # g.add_vertex(0)
731 # assert g.has_vertex(0)
732 # assert not g.has_vertex(1)
733 # g.add_vertex(1)
734 # assert g.num_vertices == 2
735 # ~~~
736 fun add_vertex(u: V) is abstract
737
738 # Removes the vertex `u` from this graph and all its incident arcs.
739 #
740 # If the vertex does not exist in the graph, then nothing happens.
741 #
742 # ~~~
743 # import digraph
744 # var g = new HashDigraph[Int]
745 # g.add_vertex(0)
746 # g.add_vertex(1)
747 # assert g.has_vertex(0)
748 # g.remove_vertex(0)
749 # assert not g.has_vertex(0)
750 # ~~~
751 fun remove_vertex(u: V) is abstract
752
753 # Adds the arc `(u,v)` to this graph.
754 #
755 # If there is already an arc from `u` to `v` in this graph, then
756 # nothing happens. If vertex `u` or vertex `v` do not exist in the
757 # graph, they are added.
758 #
759 # ~~~
760 # import digraph
761 # var g = new HashDigraph[Int]
762 # g.add_arc(0, 1)
763 # g.add_arc(1, 2)
764 # assert g.has_arc(0, 1)
765 # assert g.has_arc(1, 2)
766 # assert not g.has_arc(1, 0)
767 # g.add_arc(1, 2)
768 # assert g.num_arcs == 2
769 # ~~~
770 fun add_arc(u, v: V) is abstract
771
772 # Removes the arc `(u,v)` from this graph.
773 #
774 # If the arc does not exist in the graph, then nothing happens.
775 #
776 # ~~~
777 # import digraph
778 # var g = new HashDigraph[Int]
779 # g.add_arc(0, 1)
780 # assert g.num_arcs == 1
781 # g.remove_arc(0, 1)
782 # assert g.num_arcs == 0
783 # g.remove_arc(0, 1)
784 # assert g.num_arcs == 0
785 # ~~~
786 fun remove_arc(u, v: V) is abstract
787
788 ## -------------------- ##
789 ## Non abstract methods ##
790 ## -------------------- ##
791
792 # Adds all vertices of `vertices` to this digraph.
793 #
794 # If vertices appear more than once, they are only added once.
795 #
796 # ~~~
797 # import digraph
798 # var g = new HashDigraph[Int]
799 # g.add_vertices([0,1,2,3])
800 # assert g.num_vertices == 4
801 # g.add_vertices([2,3,4,5])
802 # assert g.num_vertices == 6
803 # ~~~
804 fun add_vertices(vertices: Collection[V])
805 do
806 for u in vertices do add_vertex(u)
807 end
808
809 # Adds all arcs of `arcs` to this digraph.
810 #
811 # If arcs appear more than once, they are only added once.
812 #
813 # ~~~
814 # import digraph
815 # var g = new HashDigraph[Int]
816 # var arcs = [[0,1], [1,2], [1,2]]
817 # g.add_arcs(arcs)
818 # assert g.num_arcs == 2
819 # ~~~
820 fun add_arcs(arcs: Collection[Array[V]])
821 do
822 for a in arcs do add_arc(a[0], a[1])
823 end
824 end
825 # A directed graph represented by hash maps
826 class HashDigraph[V: Object]
827 super MutableDigraph[V]
828
829 # Attributes
830 #
831 private var incoming_vertices_map = new HashMap[V, Array[V]]
832 private var outgoing_vertices_map = new HashMap[V, Array[V]]
833 private var number_of_arcs = 0
834
835 redef fun num_vertices do return outgoing_vertices_map.keys.length end
836
837 redef fun num_arcs do return number_of_arcs end
838
839 redef fun add_vertex(u)
840 do
841 if not has_vertex(u) then
842 incoming_vertices_map[u] = new Array[V]
843 outgoing_vertices_map[u] = new Array[V]
844 end
845 end
846
847 redef fun has_vertex(u) do return outgoing_vertices_map.keys.has(u)
848
849 redef fun remove_vertex(u)
850 do
851 if has_vertex(u) then
852 for v in successors(u) do
853 remove_arc(u, v)
854 end
855 for v in predecessors(u) do
856 remove_arc(v, u)
857 end
858 incoming_vertices_map.keys.remove(u)
859 outgoing_vertices_map.keys.remove(u)
860 end
861 end
862
863 redef fun add_arc(u, v)
864 do
865 if not has_vertex(u) then add_vertex(u)
866 if not has_vertex(v) then add_vertex(v)
867 if not has_arc(u, v) then
868 incoming_vertices_map[v].add(u)
869 outgoing_vertices_map[u].add(v)
870 number_of_arcs += 1
871 end
872 end
873
874 redef fun has_arc(u, v)
875 do
876 return outgoing_vertices_map[u].has(v)
877 end
878
879 redef fun remove_arc(u, v)
880 do
881 if has_arc(u, v) then
882 outgoing_vertices_map[u].remove(v)
883 incoming_vertices_map[v].remove(u)
884 number_of_arcs -= 1
885 end
886 end
887
888 redef fun predecessors(u): Array[V]
889 do
890 if incoming_vertices_map.keys.has(u) then
891 return incoming_vertices_map[u].clone
892 else
893 return new Array[V]
894 end
895 end
896
897 redef fun successors(u): Array[V]
898 do
899 if outgoing_vertices_map.keys.has(u) then
900 return outgoing_vertices_map[u].clone
901 else
902 return new Array[V]
903 end
904 end
905
906 redef fun vertices_iterator: Iterator[V] do return outgoing_vertices_map.keys.iterator
907 end