121 Week 19 - Greedy ALgorithms Flashcards

1
Q

Algorithmic paradigm

A

the way in which an algorithm approaches solving a problem.
E.g., recursion, divide and conquer, sweep-line, greedy.

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

Greedy algorithm

A

A way of solving problems in stages by choosing the locally optimal choice.
Means that it is a fast algorithm but can give incorrect or non-optimal solutions as it does not look at the whole problem.
Greedy algorithms can find optimal solution to some problems very quickly. E.g., travelling salesman problem.

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

Travelling salesman problem

A

Travelling salesman wants to travel to a set of cities (nodes) but needs to find the most efficient way to go to each city which minimises distance (edge weights) without visiting the same city twice and returning to the origin node.
A greedy algorithm solves this by only comparing the distance (edge weights) of nodes it can reach in 1 travel. It may not find the shortest path but it would be a good enough route.

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

Greedy algorithm for finding shortest paths

A

Start at the source node, and visit in each stage, the (yet) unvisited node which is closest to the source – Dijkstra’s algorithm.

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

Greedy algorithm for vertex 3-coloring

A

3-coloring (ring) graphs: given an undirected ring graph, assign a colour in {1,2,3} to all nodes such that no two neighbours have the same colour.
Greedy algorithms solve this by iterating through the nodes in the graph and for each node, it iterates through the array of colours, {1,2,3}, until it gets to one that no neighbour has already chosen.

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

Greedy algorithm for vertex 2-coloring

A

2-coloring (ring) graphs: given an undirected ring graph, assign a colour in {1,2} to all nodes such that no two neighbours have the same colour.
Greedy algorithms solve this by iterating through the nodes in the graph and for each node, it iterates through the array of colours, {1,2}, until it gets to one that no neighbour has already chosen.
Greedy algorithms will always fail 2-colouring odd-numbered ring graphs but can also fail on even-numbered graphs even though there is always a way to complete it.
Shows that even if there is a solution, a greedy algorithm may not always find it.

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

Greedy algorithm for maximal independent set

A

Maximal Independent Set (MIS): find a subset I of an undirected graph G where each node in I are not neighbours but all nodes from G that are not in I were neighbours of the node in I.
Greedy algorithm solves this by creating an empty graph I then iterating through every node in G. For each node in G it checks if the node has any neighbours in I, if it doesn’t, it adds the node to I.
Greedy algorithms will always output a correct solution.

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

Greedy algorithm for maximum independent set

A

Similar to maximal but it finds the largest subset of nodes I from a graph G that are not neighbours but all nodes in G are a neighbour of a node in I.
Greedy algorithms use the exact same method to find a solution.
Greedy algorithms do not always find a correct solution as there may exists a solution with a larger subset.

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

Greedy algorithms for minimum-weight spanning trees (MST)

A

Minimum-weight spanning tree (MST) problem: Given an undirected weighted graph G, compute the spanning tree with minimum total edge weights.
There are 2 greedy approaches to solving the MST problem - Kruskal’s algorithm and Prim’s algorithm.

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

Kruskal’s algorithm for minimum-weight spanning trees (MST)

A

Create an empty tree T.
Sort edges from lowest to highest weight.
Go through each edge in the sorted order and if it does not form a cycle when added to T, add it to T.

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

Kruskal’s algorithm time complexity

A

Worst case time complexity: O(E logV) where E is number of edges and V is number or vertices.

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

Prim’s algorithm for minimum-weight spanning trees (MST)

A
  1. Start with a list of vertices and edges. Vertices contains the first node and edges is empty.
  2. Visit the first node and compare the edge weights of its neighbours. Go to the node with smallest edge weight and add it to the list of vertices.
  3. Look at all edges coming from any node in the list of vertices. Find the smallest edge that is not in the list of edges and go to the node it connects to. Add this node to the list of vertices.
  4. Repeat step 3 until the list of vertices contains all nodes in the graph.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Prim’s algorithm time complexity

A

If Prim’s algorithm is implemented in the easiest way, its worst case time complexity is : O(E + V logV) where E is number of edges and V is number or vertices.
If Prim’s algorithm is implemented in the best way, its worst case time complexity is : O(|V|2) or O(E logV) where E is number of edges and V is number or vertices.

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