File: pgr_connectedComponents.rst

package info (click to toggle)
pgrouting 4.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 17,332 kB
  • sloc: cpp: 21,315; sql: 10,419; ansic: 9,795; perl: 1,142; sh: 919; javascript: 314; xml: 182; makefile: 29
file content (145 lines) | stat: -rw-r--r-- 3,520 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
:file: This file is part of the pgRouting project.
:copyright: Copyright (c) 2016-2026 pgRouting developers
:license: Creative Commons Attribution-Share Alike 3.0 https://creativecommons.org/licenses/by-sa/3.0

.. index::
   single: Components Family ; pgr_connectedComponents
   single: connectedComponents

|

``pgr_connectedComponents``
===============================================================================

``pgr_connectedComponents`` — Connected components of an undirected graph using
a DFS-based approach.

.. rubric:: Availability

* Version 3.0.0

  * Result columns change:

    * ``n_seq`` is removed
    * ``seq`` changed type to ``BIGINT``

  * Function promoted to official.

* Version 2.5.0

  * New experimental function.


Description
-------------------------------------------------------------------------------

A connected component of an undirected graph is a set of vertices that are all
reachable
from each other.

**The main characteristics are:**

- Works for **undirected** graphs.
- Components are described by vertices

- The returned values are ordered:

  - ``component`` ascending
  - ``node`` ascending

- Running time: :math:`O(V + E)`

|Boost| Boost Graph Inside

Signatures
-------------------------------------------------------------------------------

.. admonition:: \ \
   :class: signatures

   | pgr_connectedComponents(`Edges SQL`_)

   | Returns set of |result-component-V|
   | OR EMPTY SET

:Example: The connected components of the graph

.. literalinclude:: connectedComponents.queries
   :start-after: -- q1
   :end-before: -- q2

.. figure:: /images/cc_sampledata.png
   :scale: 25%

Parameters
-------------------------------------------------------------------------------

.. include:: pgRouting-concepts.rst
   :start-after: only_edge_param_start
   :end-before: only_edge_param_end

Inner Queries
-------------------------------------------------------------------------------

Edges SQL
...............................................................................

.. include:: pgRouting-concepts.rst
    :start-after: basic_edges_sql_start
    :end-before: basic_edges_sql_end


Result columns
-------------------------------------------------------------------------------

.. return_componentsV_start

Returns set of |result-component-V|

.. list-table::
   :width: 81
   :widths: auto
   :header-rows: 1

   * - Column
     - Type
     - Description
   * - ``seq``
     - ``BIGINT``
     - Sequential value starting from **1**.
   * - ``component``
     - ``BIGINT``
     - Component identifier.

       * Has the value of the minimum node identifier in the component.
   * - ``node``
     - ``BIGINT``
     - Identifier of the vertex that belongs to the ``component``.

.. return_componentsV_end

Additional Examples
-------------------------------------------------------------------------------

Connecting disconnected components
...............................................................................

.. include:: pgRouting-concepts.rst
    :start-after: connecting_graph_start
    :end-before: connecting_graph_end

See Also
-------------------------------------------------------------------------------

* :doc:`components-family`
* :doc:`sampledata`
* `Boost: Connected components
  <https://www.boost.org/libs/graph/doc/connected_components.html>`__
* wikipedia: `Connected component
  <https://en.wikipedia.org/wiki/Connected_component_(graph_theory)>`__

.. rubric:: Indices and tables

* :ref:`genindex`
* :ref:`search`