# Graph Problem
## Dijkstra
Refer to :
> http://nthucad.cs.nthu.edu.tw/~yyliu/personal/nou/04ds/dijkstra.html

Find the minimum distance from a start node to any other nodes.
**Algorithm:**
1. Construct a hash map that record the minimum distance from a to others in the current step.
|| a | b| c |d | e | f | g |
|---- | -------- | -------- | -------- |-------- |-------- |-------- |-------- |
| Step1 | ∞| ∞ | ∞ |∞ |∞ |∞ |∞ |