What is the length of a walk in an unweighted graph + what is the distance between 2 vertices
What is a weighted graph
What are negative weights in graphs
May or may not be ignored (think might be on ps)
What is the idea behind Dikstra’s algorithm
BFS with weights (using priority queue). Explore all shortest paths first.
Prove the following:
Know that d(x,y) + length(y,z) is more since was not picked first
What is a priority queue
What is the psuedo-code for Dijkstra’s algorithm
What is the runtime of Dijkstra’s algorithm