Professor Abdul-Quader
Topological Sorting
Instead of computing this mathematically, let’s try to write a simulation.
hasAPath
method. Starter codesimulate
method and play around with \(size\) and \(prob\):Need to take many courses. Some courses have others as prerequisites. Suppose we can only take one per semester. What would be a valid order that we can take the courses in?
More general problem: given a directed graph, a topological sort is an ordering of all the vertices \(v_1, v_2, \ldots, v_n\) such that if there is an edge from \(v_i\) to \(v_j\), then \(i < j\).
Think about how to represent the course prerequisite problem from the previous slide as a directed graph, and this definition should make sense.
int[] inDegree
List<Integer> topologicalOrdering
Queue<Integer> queue
for (int vertex : vertices)
calculateInDegree(vertex)
if (inDegree[vertex] == 0)
queue.enqueue(vertex)
while (!queue.isEmpty())
int vertex = queue.remove()
topologicalOrdering.add(vertex)
for (int neighbor : getNeighbors(vertex))
inDegrees[neighbor]--
if (inDegree[neighbor] == 0)
queue.add(neighbor)
return topologicalOrdering
What ordering do we get if we do a depth-first search?
Two options for DFS:
Project 3: Given a list of courses, each of which just contains a list of student IDs (of students taking that course), find a schedule for these courses.
Given an undirected graph \(G = (V, E)\), a coloring is an assignment of colors to the vertices such that no two vertices which share an edge are given the same color. A minimal coloring is a coloring that uses the least amount of colors.
Question: how are these two problems related?
Euler (1736): is there a way to cross every bridge in Königsberg exactly once? (Treat the picture as a (multi)graph. What are the nodes / edges?)
Solution? Notice: every time you enter a vertex, you must also leave it (with the exception of the start / end vertices if it’s a path and not a circuit).
Formally: a problem is in the class P if there is an algorithm which, for any input of length \(n\), runs in polynomial time in terms of \(n\):
\[P = \bigcup\limits_{i = 0}^{\infty} O(n^i)\]
These are easy to solve.
In the year 2000, the Clay Mathematics Institute posed a list a 7 Millenium problems, offering a $1M cash prize for a solution to any of these. The P vs NP question is one of them:
Problem: Prove or disprove that every problem in NP is also in P.
Many other problems are known to be in NP, but not known to be NP-complete: