DEV Community

SalahElhossiny
SalahElhossiny

Posted on

Topological Sort in Interviews

Topological Sort is used to find a linear ordering of elements that have dependencies on each other. For example, if event ‘B’ is dependent on event ‘A’, ‘A’ comes before ‘B’ in topological ordering.

This pattern defines an easy way to understand the technique for performing topological sorting of a set of elements.

The pattern works like this:

Initialization

a) Store the graph in adjacency lists by using a HashMap

b) To find all sources, use a HashMap to keep the count of in-degrees

Build the graph and find in-degrees of all vertices
a) Build the graph from the input and populate the in-degrees HashMap.

Image description

Find all sources
a) All vertices with ‘0’ in-degrees will be sources and are stored in a Queue.
Sort
a) For each source, do the following things:
—i) Add it to the sorted list.
 — ii)Get all of its children from the graph.
 — iii)Decrement the in-degree of each child by 1.  
— iv)If a child’s in-degree becomes ‘0’, add it to the sources Queue.

b) Repeat (a), until the source Queue is empty.
How to identify the Topological Sort pattern:

The problem will deal with graphs that have no directed cycles

If you’re asked to update all objects in a sorted order
If you have a class of objects that follow a particular order

Problems featuring the Topological Sort pattern:
Task scheduling
Minimum height of a tree

Top comments (0)