Traversing is nothing but visiting each node/vertex of a graph in a systematic way. A graph is represented by its nodes and edges, so, visiting all the nodes of a graph is known as traversal of the graph.
There are two approaches for graph traversal, namely Breadth First Search (BFS) and Depth First Search (DFS). In this tutorial, we will discuss the BFS approach.
In this technique, first, we take any node as a starting node and all the adjacent nodes are chosen from that starting node. In the next step, the same approach is applied to all the newly visited nodes and continued until all the nodes are visited. We maintain the status of the visited node in one array so that no node can be traversed again.
This graph traversal technique uses a queue for traversing all the nodes of the graph.
Procedure
1. Insert starting node into the queue. 2. Delete front element from the queue and insert all its unvisited neighbours into the queue at the end and traverse them. Also make the value of visited array true for these nodes. 3. Repeat step 2 until the queue is empty.
BFS Using Colour Scheme
This is another method for traversing graphs through BFS. Let's see the procedure and then we will understand the method by an example.
BFS(G,s) for each vertex u &belongsto; V[G]-{s} do color[u]=white d[u]=&infinity; π[u]=NIL color[s]=gray d[s]=0 Enqueue(Q,s) while Q!=φ do Dequeue(Q) for each v &belongsto; Adj[u] do if color[v]=white then color[v]=gray d[v]=d[u]+1 π[v]=u Enqueue(Q,v) color[u]=black end for end while
Let's take an example of a graph which is shown in the following Figure.
Source Code
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.