leda graph win

19
LEDA Graph Win Emanuele Altieri October 31, 2000

Upload: wylie-evans

Post on 30-Dec-2015

24 views

Category:

Documents


2 download

DESCRIPTION

LEDA Graph Win. Emanuele Altieri October 31, 2000. Vertices and edges. Multiple edges. Loops. Undirected Graph. Directed Graph. Simple Graph. The graph doesn’t have multiple edges. Complete and Bipartite Graphs. Complete Graph All of the nodes in the Graph are connected each other. - PowerPoint PPT Presentation

TRANSCRIPT

Page 1: LEDA Graph Win

LEDA Graph Win

Emanuele AltieriOctober 31, 2000

Page 2: LEDA Graph Win

Vertices and edges

Page 3: LEDA Graph Win

Multiple edges. Loops

Page 4: LEDA Graph Win

Undirected Graph

Page 5: LEDA Graph Win

Directed Graph

Page 6: LEDA Graph Win

Simple Graph

The graph doesn’t have multiple edges

Page 7: LEDA Graph Win

Complete and Bipartite Graphs

Complete Graph

All of the nodes in the Graph are

connected each other.

Bipartite GraphThe nodes in the graph are

divided into two classes. Edges exist only between nodes of

different classes.

Page 8: LEDA Graph Win

Path in Undirected Graphs

Simple path. The sub-graph is connected and has two first-degree nodes (0 and 6). The

other nodes of the sub-graph are second-degree.

Page 9: LEDA Graph Win

Path in Directed Graphs

Simple path. The sub-graph is connected and has one zero-indegree source node (0), and one zero-outdegree destination node (5). The other nodes of the sub-graph are second-degree

(1 in/out degree).

Page 10: LEDA Graph Win

Hamilton Path in Undirected Graphs

The subgraph is a simple path which spans all of the nodes in

the graph

Page 11: LEDA Graph Win

Hamilton Path in Directed Graphs

The subgraph is a simple path which spans all of the nodes in

the graph

Page 12: LEDA Graph Win

Cycle in Undirected Graphs

The bold subgraph above is connected and its vertices are

second-degree.

Page 13: LEDA Graph Win

Cycle in Directed Graphs

The subgraph is connected and its vertices are 1 indegree and 1

outdegree

Page 14: LEDA Graph Win

Hamilton Cycle in Undirected Graphs

The subgraph is a simple cycle which includes all of the nodes

in the graph

Page 15: LEDA Graph Win

Hamilton Cycle in Directed Graphs

The subgraph is a simple cycle which includes all of the nodes

in the graph

Page 16: LEDA Graph Win

Cyclic and Acyclic Digraphs

Cyclic GraphThe graph contains

cycles

Acyclic GraphThe graph does not contain

cycles

Page 17: LEDA Graph Win

Tree

The subgraph is a path which is a tree

Page 18: LEDA Graph Win

Forest

1

5

4

8

10

7

2

6

3

11

9

Page 19: LEDA Graph Win

Strongly Connected Digraph

The graph is connected. All of the nodes in the graph are

strongly connected each other.