You are on page 1of 28

Graphs Part-II

Topics in discussion
Introduction to graphs Directed and undirected graphs Paths Connected graphs Trees Degree Isomorphic graphs Cut set Labeled graphs Hamiltonian circuit

Introduction to graphs
Graph is a mathematical structure used to model pair wise relations between objects from a certain collection.

Vertices
Edges

Directed and undirected graphs


A graph is said as directed graph whose definition makes reference to edges which are directed. Ie, edges which are ordered pair of vertices.

A graph is said as undirected graph whose definition makes reference to unordered pairs of vertices as edges is known as an undirected graph.

Paths
A path in a graph is a sequence of vertices such that from each of its vertices there is an edge to the next vertex in the sequence.

The length of a path is the number of edges on it. The length can be zero for the case of a single vertex.

A path may be infinite. A finite path always has a first vertex, called its start vertex, and a last vertex, called its end vertex. Both of them are called terminal vertices of the path. The other vertices in the path are internal vertices.
A
E D B

Path= A B D C E

A- Start vertex E- End vertex

Simple path
A graph with no loops or multiple edges is called a simple graph. A path with no repeated vertices is called a simple path. The path from v1 to v4 is said to be simple path as vertices is touched more than once. The path from v1 to v4 is not simple as v1 is touched twice or looped.

cycle:
Simple path, except that the last vertex is the same as the first vertex. Its also known as a circuit or circular path.
A E C B

Path= A E C A

Connected graph
Two vertices vi, vj in a graph G is said to be connected only if there is a path in G between vi and vj. A undirected graph is said to be connected graph if every pair of distinct vertices vi, vj are connected.

Connected undirected graph

In the case of an undirected graph, which is not connected,the maximal connected subgraph is called as a connected component or simply a component.

The graph below has 3 connected components.

Connected directed graph


A directed graph is said to be strongly connected only if every pair of distinct vertices vi, vj are connected. If there is a directed path from vi to vj then there must be a directed path from vj to vi.

A strongly connected directed graph

Strongly connected components of directed graph The below graph is not strongly connected but is said to possess two strongly connected components.

Trees
A tree is defined to be a connected acyclic graph. The following properties are satisfied by a tree: There exist a path between any two vetices of the tree No cycles must be present in the tree ie, trees are acyclic.

A Tree

Not a tree

Terms like parent, child, ancestors,level are missing but both the definitions of tree in datastructures and in graph share the same properties of connectedness and acyclicity.

Both have the same properties of connectedness and acyclicity.

Degree
The degree of vertex in an undirected graph is the number of edges incident to that vertex. A vertex with degree one is called pendent vertex or end vertex. A vertex with degree zero and hence has no incident edges is called an isolated vertex.
A B Pendent vertex Isolated vertex V1

In the undirected graph vertex v3 has the degree 3 And vertex v2 has the degree 2

Degree in directed graph


Degree of directed graph has two types i. Indegree No of edges with their head towards the vertex. ii. Outdegree No of edges with their tail towards the vertex. Indegree of vertex v2 is 2 and Outdegree of vertex v1 is 1.

Example:
3

0
0 1
3 2

2
3

1 31 G
3

3
1

4
1

5
G2
1

6
1

0 1 2 G3

in:1, out: 1

Directed graph in-degree out-degree


in: 1, out: 2

in: 1, out: 0

Isomorphic graphs
Isomorphism Two graphs are isomorphic, if they are structurally identical, Which means that they correspond in all structural details. Formal vertex-to-vertex and edge to-edge correspondence is called isomorphism. Two graph are said to be isomorphic if They have the same no of vertices. They have the same number of edges. They have an equal number of vertices with a given degree.

Verifying Isomorphic graph

Graph B

Graph A

Vertices(A) :

Vertices(B): Degree of vertices: Edges(A): Edges(B):

q 2 e1 e1

p 3 e2 e4

r 3 e3 e3

s 3 e4 e2

t 1 e5 e5 e6 e6

Examples for non isomorphic graphs :


i)
u2
u1 u5 u3 u4 v1 v4

v2
v3

1st graph has more edges than 2nd.

ii) 2nd graph has vertex of degree 1, 1st graph doesn't.

u2
u1 u5 u3 u4 v1 v5

v2
v3 v4

iii) 1st graph has 2 degree 1 vertices, 4 degree 2 vertex and 2 degree 3 vertices. 2nd graph has 3 degree 1 vertices, 3 degree 2 vertex and 3 degree 3 vertices.

u1

u2

u3

u4

u5

u6

v1

v2

v3

v4

v5

v6

u7

u8

u9

v7

v8

v9

Cut set
Cut set is a connected graph G is the set of edges whose removal from G leaves G disconnected, Provided the removal of no proper sebset of these edges disconnects the graph G. Cut set are also called proper cut set or minimal cut set.

If one can remove a vertex (and all incident edges) and produce a graph with more components, the vertex is called a cut vertex or articulation point. Similarly if removal of an edge creates more components the edge is called a cut edge or bridge. The cut-set of the cut is the set of edges whose end points are in different subsets of the partition. Edges are said to be crossing the cut if they are in its cut-set.

Labeled graph
A graph G is called a labeled graph if its edges and/or vertices are assigned some data. A graph labeling is the assignment of labels, traditionally represented by integers, to the edges or vertices, or both, of a graph. If the edge e is assigned a non-negative number then it is called the weight or length of the edge e.

Vertex-labeled graph
If all the vertices in a graph are given a label then it is vertex-labeled graph

Edge-labeled graph
If all the Edges in a graph are given a label then it is Edge-labeled graph

Hamiltonian circuit
Hamiltonian paths and circuits are named after the mathematician ,William Rowan Hamilton. A Hamiltonian circuit in a connected graph is defined as a closed walk that traverses every vertex of G exactly once. also called Hamiltonian cycles. It is called as circuit if it includes every vertex of G. If any edge

is removed then it is Hamiltonian path.

Hamiltonian circuit: {v1,v3,v4,v2,v6,v5,v1} The above is a Hamiltonian circuit as each and every vertex is traversed once And completes the circuit by ending in starting point.

A Hamiltonian path or traceable path is a path that visits each vertex exactly once. Its also called as a traceable graph.

b
Hamiltonian path

A graph is Hamiltonian-connected if for every pair of vertices there is a Hamiltonian path between the two vertices.

Thank you

You might also like