Week 18 - Pathfinding Algorithms Flashcards

1
Q

Path between nodes

A

A sequence of non-repeating nodes between 2 nodes.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Shortest path between nodes.

A

A sequence of non-repeating nodes between 2 nodes, that has the smallest total edge weight.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Shortest path problems

A

Shortest distance to source: find the smallest distance (sum of edge weights) from all nodes to the source node.
Shortest path to source: find the shortest path (least nodes traversed) from all nodes to the source node.
Pathfinding: find the shortest path between 2 nodes.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

BFS traversal

A

BFS traversal finds the shortest path from the source to any node for an unweighted graph.
However if a directed graph is not strongly connected, it may not visit all nodes depending on the source node.
BFS works on undirected and directed graphs.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Traversals on weighted graphs

A

You cannot use BFS on a weighted graph. Instead need to use an algorithm such as Dijkstra or A*.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Dijkstra’s algorithm

A

Can be used shortest distances from source, shortest paths from source and pathfinding from source.
It only works if all edges are non-negative.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Dijkstra’s to find shortest distances

A

2 arrays: visited[] and distanceToSource[]
1. Start at source and set all nodes in visited to unvisited except the source. Set all distanceToSource values to infinity except for the source which is 0.
2. Visit unvisited node v with the smallest distance to source. Then for all neighbours of v, if the path going through v is shorter than the existing distanceToSource for that node, update the distanceToSource. Mark node v as visited.
3. Repeat step 3 until all nodes have been visited.
4. Return distanceToSource.
Shortest distance can be found by going to the lowest value in distanceToSource

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Dijkstra’s to find shortest path

A

3 arrays: visited[], previousNode[] and distanceToSource[]
1. Start at source and set all nodes in visited to unvisited except the source. Set all distanceToSource values to infinity except for the source which is 0. Set all previousNodes entries to null.
2. Visit unvisited node v with the smallest distance to source. Then for all neighbours of v, if the path going through v is shorter than the existing distanceToSource for that node, update the distanceToSource and set previousNode[neighbour] to v. Mark node v as visited.
3. Repeat step 3 until all nodes have been visited.
4. Return distance to source and previousNode.
Shortest path can be found by backtracking through previousNode, starting at the node with the lowest distanceToSource. For each value in previousNode, go to the corresponding node’s value.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Pathfinding via Dijkstra’s algorithm

A

Used to find shortest path between 2 nodes.
Same as shortest path but when visiting a new node, check if it is the target node.
If it is, return distanceToSource and previousNode, if not, continue to next node.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Complexity of dijkstra’s algorithm

A

Worst case time complexity: O(n^2)
Dijkstra’s algorithm can be modified to be more efficient and get worst case of O(m+nlogn) where m is number of edges.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

A* search algorithm

A

A pathfinding algorithm to find the shortest path between 2 specified nodes that can be used when you have heuristic information on the distance from some nodes to the source.
Uses heuristic prediction on the distance from current node to specified target to improve the efficiency of the algorithm by guiding it to the target.
If d(v) is distance from source to v and h(v) is heuristic distance from v to target then d(v)+h(v) for nodes is compared to decide which node to visit next.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Bellman-Ford algorithm

A

A pathfinding algorithm that finds the shortest path from a source node to all other nodes in a graph. It is useful as it can be used even if edge weights are negative.
Bellman-Ford works similarly to Dijkstra’s in that it sets distanceToSource of all nodes except the source to infinity and then changes these values as it moves through the graph. However Bellman-Ford does not use a priority queue and instead iterates through the entire graph n-1 times where v is the number of nodes.
It is less efficient than Dijkstra’s but works in the case of negative edge weights.
Has worst case time complexity of O(n*m) where n is number of nodes and m is number of edges.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly