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

The chapter suggests an alternative algorithm for linearization (topological sorting), which repeatedly removes source nodes from the graph (page 101). Show that this algorithm can be implemented in linear time.

Short Answer

Expert verified

Answer is not given by the question.

Step by step solution

01

Linearization topology sorting.

Topological sorting

The topological sorting is the traversing of directed acyclic graph in order to get a topological order in a way that the output in decreasing order of post number

Some properties ofTopological sorting are as follows

1). The topological ordering is basically a linear ordering of graph if u and v are the vertices of graph their u must be comes before v.

2). It must be a DAG (directed acyclic graph)

3). The given graph should be directed acyclic graph with no cycle.

4). Every directed acyclic graph must contain at least onetopological ordering.

5). It takes linear time for processing.

02

Proving the algorithm.

In first step check whether the graph has cycle or not. If not then proceed for topological ordering.in the above graph it does not contain any cycle in it then proceed it to the next step.

03

Find the degree of the vertices.

Now find out the node with in degree zero and consider it as source vertex.

In degree of any node is the number of edges which directs towards it.

So, here A has in degree zero and B also contain zero as its in degree. Now select anyone from these vertices.

Let A as its source vertex.

04

Find the cycle and degree.

After selection of A select as its next node because its in degree is zero. And removes source nodes from the graph.

So, after removing both of the vertices, it seems that C has degree 0 and D has 1 in degree. Than select C , up to here the sequence of graph is ABC .

Than eliminate C .now the degree of D and E again zero. Select any one from them. Select D and after that select E. Now the degree of F is zero and the degree of G and H is 1 . After selecting F eliminate F and again look for degree and the degree of both G and H is zero because no other edge is coming on these nodes let select G and after that select H. Similarly apply this method on each and every vertex.

Then the sequence is, ABCDEFGH

05

Evaluate all possible cases.

Similarly, by selectingas first edge other three case is possible through this they are as follows,

ABCDEFGHABCEDFGHABCEDFHGABCDEFHG

Now the next possibility is when the source node as B and after that select A as the next vertex now again find the degree of the each and every node in the graph after eliminating both vertex A and B then it is clear the new degree of C is zero. So, select C . Again D and E are the two option select each of them one by one for showing various possibility.

Then select in one case EFGH .

The other four cases are as follows:

BACEDFHGBACDEFHGBACDEFGHBACEDFGH

It takes linear time for processing.And, there are 8 topological orders are possible in the graph.

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

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.

In the 2SAT problem, you are given a set of clauses, where each clause is the disjunction (OR) of two literals (a literal is a Boolean variable of or the negation of a Boolean variable). You are looking for a way to assign a valuetrueorfalseto each of the variables so that all clauses are satisfied- that is, there is at least one true literal in each clause. For example, hereโ€™s an instance of 2SAT:

x1โˆจx2ยฏโˆงx1ยฏโˆจx3ยฏโˆงx1โˆจx2โˆงx3ยฏโˆจx4โˆงx1ยฏโˆจx4

This instance has a satisfying assignment: set x1,x2,x3, and x4 totrue, false, false,andtrue,respectively.

  1. Are there other satisfying truth assignments of this 2SAT formula? If so, find them all.
  2. Give an instance of 2SAT with four variables, and with no satisfying assignment.

The purpose of this problem is to lead you to a way of solving 2SAT efficiently by reducing it to the problem of finding the strongly connected components of a directed graph. Given an instance l of 2SAT with n variables and m clauses, construct a directed graph GI=V,E as follows.

  • GIhas 2nnodes, one for each variable and its negation.
  • GIhas 2m edges: for each clause ฮฑโˆจฮฒof l (where ฮฑ,ฮฒare literals), G1has an edge from the negation of ฮฑ to ฮฒ, and one from the negation ofฮฒ to ฮฑ.

Note that the clause ฮฑโˆจฮฒis equivalent to either of the implications ฮฑยฏโ‡’ฮฒ or ฮฒยฏโ‡’ฮฑ. In this sense, data-custom-editor="chemistry" GI records all implications in l .

(C). Carry out this construction for the instance of 2SAT given above, and for the instance you constructed in (b).

(d). Show that if GI has a strongly connected component containing both x and Xยฏ for some variable x , then l has no satisfying assignment.

(e). Now show the converse of (d): namely, that if none of GIโ€™s strongly connected components contain both a literal and its negation, then the instance l must be satisfiable.(Hint: Assign values to the variables as follows: repeatedly pick a sink strongly connected component of GI. Assign valuetrueto all literals in the sink, assignfalseto their negations, and delete all of these. Show that this ends up discovering a satisfying assignment.)

(f). Conclude that there is a linear-time algorithm for solving 2SAT.

You are given tree T=(V,E) along with a designated root node rโˆˆV. The parent of any node Vโ‰ r, denoted p(V), is defined to be the node adjacent to v in the path from r to v . By convention, p(r)=r. For k>1, define pk(v)pk-1(pv)andp1(v)=p(v)(so pk(v)is the k th ancestor of v ). Each vertex v of the tree has an associated non-negative integer label l(v). Given a linear-time algorithm to update the labels of all the vertices T according to the following rule: lnew(v)=l(plvv).

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.

Give an efficient algorithm which takes as input a directed graph G(V,E)and determines whether or not there is a vertexsโˆˆV from which all other vertices are reachable.

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