Maple für Professional
Maple für Akademiker
Maple für Studenten
Maple Personal Edition
Maple Player
Maple Player für iPad
MapleSim für Professional
MapleSim für Akademiker
Maple T.A. - Testen & beurteilen
Maple T.A. MAA Placement Test Suite
Möbius - Online-Courseware
Machine Design / Industrial Automation
Luft- und Raumfahrt
Fahrzeugtechnik
Robotics
Energiebranche
System Simulation and Analysis
Model development for HIL
Anlagenmodelle für den Regelungsentwurf
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematikausbildung
Technik
Allgemein- und berufsbildende Schulen
Testen und beurteilen
Studierende
Finanzmodelle
Betriebsforschung
Hochleistungsrechnen
Physik
Live-Webinare
Aufgezeichnete Webinare
Geplante Veranstaltungen
MaplePrimes
Maplesoft-Blog
Maplesoft-Mitgliedschaft
Maple Ambassador Program
MapleCloud
Technische Whitepapers
E-Mail Newsletters
Maple-Bücher
Math Matters
Anwendungs-Center
MapleSim Modell-Galerie
Anwenderberichte
Exploring Engineering Fundamentals
Lehrkonzepte mit Maple
Maplesoft Welcome-Center
Resource-Center für Lehrer
Help-Center für Studierende
GraphTheory[IsStronglyConnected]
GraphTheory[StronglyConnectedComponents]
Calling Sequence
IsStronglyConnected(G)
StronglyConnectedComponents(G, sortoption)
Parameters
G
-
graph
sortoption
equation of the form sorted=true or false (optional)
Description
A graph G is strongly connected if for each vertex u in G there is a path to every other vertex in G. Note: a graph with one vertex is strongly connected. If G is an undirected graph, then being strongly connected is equivalent to being connected. An example of a strongly connected graph is the directed cycle graph.
The IsStronglyConnected('G') function returns true if the input graph is a strongly connected graph. It returns false otherwise.
The StronglyConnectedComponents command computes the maximal subgraphs of G which are strongly connected. It returns them as a list of lists of vertices where the number of lists indicates the number of strongly connected components.
By default the result is sorted by size of the subgraph. The optional parameter sorted=false can be used to preserve the order as computed by the algorithm.
Examples
The graph below is connected but not strongly connected since vertex 1 is not reachable from vertices 2 or 3.
See Also
ConnectedComponents, Digraph, IsConnected, Trail
Download Help Document