Professor Abdul-Quader
Topological Sorting
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:
(If time) Let’s go back to the RandomGraph from last time:
hasAPath
method. How?simulate
method and play around with
\(size\) and \(prob\):Sorting problem: given an array of integers, re-arrange the elements to be in increasing order.
CS2:
Remember these?
Recursive algorithm:
procedure mergesort(array, tmpArray, left, right):
if (left >= right) return
mid = (left + right) / 2
mergesort(array, tmpArray, left, mid)
mergesort(array, tmpArray, mid + 1, right)
merge(array, tmpArray, left, mid + 1, right)
How do we implement the merge
algorithm? (This is why we
have a tmpArray
)