Professor Abdul-Quader
Intro to Graphs
Let \(G = (V, E)\) be a graph. Suppose \(V = \{ v_1, v_2, \ldots, v_n \}\) (so it has \(n\) vertices).
Adjacency List:
\[ \begin{array}{c|c|c|c|c} & v_1 & v_2 & v_3 & v_4 \\ \hline v_1 & 0 & 1 & 0 & 0 \\ v_2 & 1 & 0 & 1 & 1 \\ v_3 & 0 & 1 & 0 & 0 \\ v_4 & 0 & 1 & 0 & 0 \end{array} \]
Simple graph theory result:
Theorem: Every finite, undirected graph has an even number of vertices with odd degree.
Proof?
Corollary: in every group of people, there is an even number of people who have an odd number of friends.
A \(k\)-clique is a group of \(k\) vertices that all are mutually interconnected. A \(k\)-anti-clique is a group of \(k\) vertices such that none of them are connected to each other.
Theorem: Every graph with at least 6 vertices has either a 3-clique or a 3-anti-clique.
Proof? Corollary (in terms of friendship)?
Application: Google’s PageRank algorithm.
Simplified internet with just 4 websites.
Represent with the following matrix:
\[ \begin{pmatrix} 0 & 0 & .5 & .5 \\ 1/3 & 0 & 0 & 0 \\ 1/3 & 0 & 0 & .5 \\ 1/3 & 1 & .5 & 0 \end{pmatrix} \]
Look for the “steady-state” vectors here. How?
Problem: Given a graph \(G = (V, E)\), node \(s \in V\), find the shortest path from \(s\) to every node in the graph.
v.visted = true
, might have a
Set
object.parent
and dist
might be Map
s
instead of properties in the Vertex class.
Problem: Given a dictionary (as a list of words), and two words, compute the edit distance between those two words. That is, the number of edits needed to go from word 1 to word 2, such that all intermediate words are words in the dictionary.
Due Friday, April 4: