Warning: foreach() argument must be of type array|object, bool given in /var/www/html/web/app/themes/studypress-core-theme/template-parts/header/mobile-offcanvas.php on line 20

Perform depth-first search on each of the following graphs; whenever there’s a choice of vertices, pick the one that is alphabetically first. Classify each edge as a tree edge, forward edge, back edge, or cross edge, and give the pre and post number of each vertex.

Short Answer

Expert verified

(a) Order of DFS traversal: ABCDHGFE

Tree edges: AB,BC,CD,DH,GH,FG,FE

Forward edges:AF,BE

Back edge: FG,EG,ED,DB

Pre and Post order are: A(1,16),B(2,15),C(3,14),D(4,13),H(5,12),G(6,11),F(7,10),E(8,9)

,

(b) Order of DFS traversal: ABFCDEHG

Tree edges: AB,AH,HG,BF,FC,DE

Forward edges: FE

Back edge: GA,CB

Cross edge: DC,GF,GB

Pre and Post order are: localid="1657775037924" A(1,16),B(2,11),C(4,5),D(6,9),E(7,8),F(3,10),G(13,14),H(12,15)

Step by step solution

01

Step 1: Depth First Search Graph Traversal

Depth First Search (DFS) is an application of graph traversal. It traverses the node downwards and uses the stack as a data structure through this it traverses all vertices in downward direction one by one.

A graph contains various edges. They are:tree edge, forward edge and back edge. The graph obtained by traversing while using depth first search is called its tree edge. The edge (u,v)where u is descendant and it is not part of depth first search is called forward edge. The edge(u,v) where u is ancestor and it is not part of depth first search is called forward edge.

02

Traverse the graph (a) by depth first search.

(a)

While traversing the graph bydepth-first search, the vertex A is traversed first. From A there are two options B and F and through A traversal is done to B.

From vertex B two options are C and E. Take E as the next vertex then D then using depth first search, go through node H, G and last traverse F. Figure showing graph traversal by depth first search is:

Edge AB in black color is the main edge called tree edge. The edge in blue color for edge AF is called back edge and the edge BE is called as forward edge.

Here the tree edges for the given graph are AB,BC,CD,DH,GH,FG,FE. The forward edges are AF,BE. And the back edge of the graph is FG,EG,ED,DB.The tree edges of the given graph are localid="1657775173067" AB,AH,HG,BF,FC,DE.The forward edge is FE. The back edges are GA,CBand the cross edge of the graph is DC,GF,GB. Hence, after applying depth-first search where the order of traversal is ABCDHGFE .

The pre and post number of each vertex are given as, A1,16 where 1 is pre vertex and 16 is post vertex. First the pre vertex is obtained and then post vertex of the graph is obtained. The final sequence of the pre and post order are A(1,16),B(2,15),C(3,14),D(4,13),H(5,12),G(6,11),F(7,10),E(8,9).

Hence, pre and post numbers of each vertex are localid="1657775094839" A(1,16),B(2,15),C(3,14),D(4,13),H(5,12),G(6,11),F(7,10),E(8,9)and the order of DFS traversal is ABCDHGFE .

03

Traverse the graph (b) by depth first search.

(b)

Figure showing graph traverse by depth first search is

In this graph, according to depth first search start from the node A, there are two vertices that are linked with A they are B or H but as mentioned in the question that give preference of vertices by their alphabetic order. Hence, after this visit B. From B there is a direct connection with F. So, the next node in this path is F then again F is connected with two nodes that are C and D . Here by alphabetical order traversal, first C is traversed then from C there is no other edge for traversing then go to the back edge which is back track F to D . After D , traverse the other nodes in a same way that are E,G,F .

Blue color in the graph shows cross edge. Black color shows tree edge of the traversal and the red edge shows back edge and the edge in the green shows forward edge.

Pre and post number of the vertex A given is A1,16 where 1 is pre vertex and 16 is the post vertex. Similarly, the pre and post number of each vertex of the graph is obtained.

Hence, pre and post numbers of each vertex are A(1,16),B(2,11),C(4,5),D(6,9),E(7,8),F(3,10),G(13,14),H(12,15)and the order of DFS traversal is ABFCDEHG.

Unlock Step-by-Step Solutions & Ace Your Exams!

  • Full Textbook Solutions

    Get detailed explanations and key concepts

  • Unlimited Al creation

    Al flashcards, explanations, exams and more...

  • Ads-free access

    To over 500 millions flashcards

  • Money-back guarantee

    We refund you if you fail your exam.

Over 30 million students worldwide already upgrade their learning with Vaia!

One App. One Place for Learning.

All the tools & learning materials you need for study success - in one app.

Get started for free

Most popular questions from this chapter

Let S be a finite set. A binary relation on S is simply a collection R of ordered pairs(x,y)S×S. . For instance, S might be a set of people, and each such pair (x,y)R might mean “ x knows y ”.

An equivalence relationis a binary relation which satisfies three properties:

  • Reflexivity: localid="1659006645990" (x,y)R for all XS
  • Symmetry: If (x,y)R then (y,x)R
  • Transitivity: if (x,y)R and (y,z)R then localid="1659006784500" (x,Z)R

For instance, the binary relation “has the same birthday as” is an equivalence relation, whereas “is the father of” is not, since it violates all three properties.

Show that an equivalence relation partition set S into disjoint groups S1,S2,,Sk (in other words, S=S1S2SkandSiSj=ϕforallij ) such that:

  • Any two members of a group are related, that is, (x,y)R for any localid="1659006702579" (x,y)Si, for any i .
  • Members of different groups are not related, that is, for all ij, for all localid="1659006762355" xSi andySi, we have (x,Z)R.

(Hint: Represent an equivalence relation by an undirected graph.)

The reverse of a directed graph G = (V,E) is another directed graphGR=(V,ER) on the same vertex set, but with all edges reversed that is,ER={(v,u):(u,v)E} . Give a linear-time algorithm for computing the reverse of a graph in adjacency list format.

On page 102, we defined the binary relation “connected” on the set of vertices of a directedgraph. Show that this is an equivalence relation(see Exercise 3.29), and conclude that it partitions the vertices into disjoint strongly connected components.

As in the previous problem, you are given a binary tree T=(V,E) with designated root node. In addition, there is an array x[.]with a value for each node in V Define a new array z[.]as follows: for each uV,

z[u]=the maximum of the x-values associated with u’s descendants.

Give a linear-time algorithm that calculates the entire z-array.

You are given a tree T=(V,E) (in adjacency list format), along with a designated root node rV. Recall that u is said to be an ancestor of v in the rooted tree if the path from r to v in T passes through u.

You wish to reprocess the tree so that queries of the form “is u an ancestor v?” can be answered in constant time. The pre-processing itself should take linear time. How can this be done?

See all solutions

Recommended explanations on Computer Science Textbooks

View all explanations

What do you think about this solution?

We value your feedback to improve our textbook solutions.

Study anywhere. Anytime. Across all devices.

Sign-up for free