|
|
Component Class |
Namespace: GraphLibrary
public class Component
The Component type exposes the following members.
| Name | Description | |
|---|---|---|
| ConnectedComponents |
Generate connected components.
| |
| Equals | Determines whether the specified object is equal to the current object. (Inherited from Object.) | |
| Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) | |
| GetHashCode | Serves as the default hash function. (Inherited from Object.) | |
| GetType | Gets the Type of the current instance. (Inherited from Object.) | |
| IsConnected |
Returns True if the graph is connected, false otherwise.
| |
| IsWeaklyConnected |
Test directed graph for weak connectivity.
A directed graph is weakly connected if and only if the graph is connected when the direction of the edge between nodes is ignored.
Note that if a graph is strongly connected, it is by definition weakly connected as well.
| |
| MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) | |
| NodeConnectedComponent |
Returns the set of nodes in the component of graph containing node n.
| |
| NumberConectedComponents |
Returns the number of connected components.
| |
| NumberWeaklyConectedComponents |
Returns the number of weakly connected components in graph.
| |
| StronglyConnectedComponents |
Generate nodes in strongly connected components of graph.
| |
| ToString | Returns a string that represents the current object. (Inherited from Object.) | |
| WeaklyConnectedComponents |
Generate weakly connected components of graph.
|