Question: Consider a Directed Acyclic Graph ( DAG ) with n number of nodes. The nodes are numbered from 0 to ( n - 1 )

Consider a Directed Acyclic Graph (DAG) with n number of nodes. The nodes are numbered from 0 to (n-1). Write a program that returns a list, which contains all the nodes in ascending order. Here, list[i] contains all ancestors in ascending order, for the ith node, and 0i(n-1). A node u is an ancestor of another node v if u can reach v via a set of edges. For example, consider the following graph. The Output for this graph should be: [???????????????01???02???013??012340123?] Explanation: * Nodes 0,1, and 2 do not have any ancestors. * Node 3 has two ancestors 0 and 1.* Node 7 has four ancestors 0,1,2 and 3.
Test the code for the following graphs.
 Consider a Directed Acyclic Graph (DAG) with n number of nodes.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!