Topological Sort Problem Statement
Given a Directed Acyclic Graph (DAG) consisting of V
vertices and E
edges, your task is to find any topological sorting of this DAG. You need to return an array of size V
representing the topological sort of the vertices of the given DAG.
Input:
``` The first line of input contains an integer ‘T’ denoting the number of test cases. The description of ‘T’ test cases follows. The first line of each test case contains two space-separated integers ‘V’, ‘E’, representing the number of vertices and edges in the graph respectively. Then ‘E’ lines follow, each containing 2 space-separated integers ‘u’, ‘v’ representing that there is a directed edge from vertex ‘u’ to vertex ‘v’. ```Output:
``` For each test case, return an array representing the topological sort of the vertices of the given DAG. ```Example:
Consider a sample DAG. If there are directed edges as follows: from 0 to 1, from 0 to 3, from 1 to 2, and from 3 to 2, then one possible topological sort of this DAG is: {0, 1, 3, 2}
.
Constraints:
- 1 <= T <= 50
- 1 <= V <= 104
- 0 <= E <= 104
- 0 <= u, v < V
Note:
- It is guaranteed that the given graph is a DAG.
- There will be no multiple edges and self-loops in the given DAG.
- There can be multiple correct solutions; you can find any one of them.
- You do not need to print anything. It has already been taken care of. Just implement the given function.

AnswerBot
4mo
Topological sort of a Directed Acyclic Graph (DAG) is found by ordering the vertices in such a way that for every directed edge u -> v, u comes before v in the ordering.
Use Depth First Search (DFS) to...read more
Help your peers!
Add answer anonymously...
Top Software Developer Intern Interview Questions Asked at Bounteous x Accolite
Q. Ninja and the Maze Problem Statement Ninja is stuck in a maze represented as a 2...read more
Q. Median of Two Sorted Arrays Given two sorted arrays A and B of sizes N and M, fi...read more
Q. Distance Between Two Nodes in a Binary Tree Given a binary tree and the values o...read more
Interview Questions Asked to Software Developer Intern at Other Companies
Top Skill-Based Questions for Bounteous x Accolite Software Developer Intern
Algorithms Interview Questions and Answers
250 Questions
Data Structures Interview Questions and Answers
250 Questions
Web Development Interview Questions and Answers
250 Questions
Operating Systems Interview Questions and Answers
250 Questions
System Design Interview Questions and Answers
250 Questions
C++ Interview Questions and Answers
150 Questions
Stay ahead in your career. Get AmbitionBox app


Trusted by over 1.5 Crore job seekers to find their right fit company
80 L+
Reviews
10L+
Interviews
4 Cr+
Salaries
1.5 Cr+
Users
Contribute to help millions
AmbitionBox Awards
Get AmbitionBox app

