Topological Sort Topological Sort Sorting technique over DAGs

  • Slides: 27
Download presentation
Topological Sort

Topological Sort

Topological Sort • Sorting technique over DAGs (Directed Acyclic Graphs) • It creates a

Topological Sort • Sorting technique over DAGs (Directed Acyclic Graphs) • It creates a linear sequence (ordering) for the nodes such that: – If u has an outgoing edge to v then u must finish before v starts • Very common in ordering jobs or tasks

Topological Sort Example A job consists of 10 tasks with the following precedence rules:

Topological Sort Example A job consists of 10 tasks with the following precedence rules: Must start with 7, 5, 4 or 9. Task 1 must follow 7. Tasks 3 & 6 must follow both 7 & 5. 8 must follow 6 & 4. 2 must follow 4. 10 must follow 2. Make a directed graph and then do DFS.

9 7 Tasks shown as a directed graph. 1 3 5 6 4 2

9 7 Tasks shown as a directed graph. 1 3 5 6 4 2 8 10

Topological Sort using DFS • To create a topological sort from a DAG 1

Topological Sort using DFS • To create a topological sort from a DAG 1 - Final linked list is empty 2 - Run DFS 3 - When a node becomes black (finishes) insert it to the top of a linked list

Example 9 7 1 3 5 6 4 2 8 10

Example 9 7 1 3 5 6 4 2 8 10

Example 9 7 1 3 5 6 4 2 8 10

Example 9 7 1 3 5 6 4 2 8 10

Example 9 7 1 3 5 6 4 2 8 10

Example 9 7 1 3 5 6 4 2 8 10

Example 9 7 1 3 5 6 4 2 8 10

Example 9 7 1 3 5 6 4 2 8 10

Example 9 7 head 1 10 3 5 6 4 2 8 10

Example 9 7 head 1 10 3 5 6 4 2 8 10

Example 9 7 head 1 2, 10 3 5 6 4 2 8 10

Example 9 7 head 1 2, 10 3 5 6 4 2 8 10

Example 9 7 head 1 2, 10 3 5 6 4 2 8 10

Example 9 7 head 1 2, 10 3 5 6 4 2 8 10

Example 9 7 head 1 8, 2, 10 3 5 6 4 2 8

Example 9 7 head 1 8, 2, 10 3 5 6 4 2 8 10

Example 9 7 head 1 4, 8, 2, 10 3 5 6 4 2

Example 9 7 head 1 4, 8, 2, 10 3 5 6 4 2 8 10

Example 9 7 head 1 4, 8, 2, 10 3 5 6 4 2

Example 9 7 head 1 4, 8, 2, 10 3 5 6 4 2 8 10

Example 9 7 head 1 4, 8, 2, 10 3 5 6 4 2

Example 9 7 head 1 4, 8, 2, 10 3 5 6 4 2 8 10

Example 9 7 head 1 1, 4, 8, 2, 10 3 5 6 4

Example 9 7 head 1 1, 4, 8, 2, 10 3 5 6 4 2 8 10

Example 9 7 head 1 1, 4, 8, 2, 10 3 5 6 4

Example 9 7 head 1 1, 4, 8, 2, 10 3 5 6 4 2 8 10

Example 9 7 head 1 3, 1, 4, 8, 2, 10 3 5 6

Example 9 7 head 1 3, 1, 4, 8, 2, 10 3 5 6 4 2 8 10

Example 9 7 head 1 3, 1, 4, 8, 2, 10 3 5 6

Example 9 7 head 1 3, 1, 4, 8, 2, 10 3 5 6 4 2 8 10

Example 9 7 head 1 6, 3, 1, 4, 8, 2, 10 3 5

Example 9 7 head 1 6, 3, 1, 4, 8, 2, 10 3 5 6 4 2 8 10

Example 9 7 head 1 7, 6, 3, 1, 4, 8, 2, 10 3

Example 9 7 head 1 7, 6, 3, 1, 4, 8, 2, 10 3 5 6 4 2 8 10

Example 9 7 head 1 7, 6, 3, 1, 4, 8, 2, 10 3

Example 9 7 head 1 7, 6, 3, 1, 4, 8, 2, 10 3 5 6 4 2 8 10

Example 9 7 head 1 9, 7, 6, 3, 1, 4, 8, 2, 10

Example 9 7 head 1 9, 7, 6, 3, 1, 4, 8, 2, 10 3 5 6 4 2 8 10

Example 9 7 head 1 9, 7, 6, 3, 1, 4, 8, 2, 10

Example 9 7 head 1 9, 7, 6, 3, 1, 4, 8, 2, 10 3 5 6 4 2 8 10

Example 9 7 head 1 5, 9, 7, 6, 3, 1, 4, 8, 2,

Example 9 7 head 1 5, 9, 7, 6, 3, 1, 4, 8, 2, 10 3 5 6 4 2 8 10

Topological Sort: Summary 9 7 head 1 5, 9, 7, 6, 3, 1, 4,

Topological Sort: Summary 9 7 head 1 5, 9, 7, 6, 3, 1, 4, 8, 2, 10 3 5 6 The final order or jobs 8 Time complexity = DFS complexity O(V + E) 4 2 10 There can be many orders that meet the requirements