Problems
- GIven a graph:
- maximal independent set (i.e. no other vertex can be added to the set)
- find a single maximal independent set
- Sequential algorithm
- Random-selection parallel algorithm (Luby’s Algorithm)
- Random-priority parallel algorithm
- Random-permutation parallel algorithm (Blelloch’s Algorithm)
- find all maximal independent sets
- count the number of maximal independent sets
- find a single maximal independent set
- maximum independent set: (i.e. largest possible independent set)
- find single maximum independent set
- find all maximum independent sets
- count the number of maximum independent sets
- Maximum Weighted Independent Set Problem
- Find an independent set where the sum of vertex weights is maximized.
- Clique problem
- maximum clique problem: finding a maximum clique (a clique with the largest possible number of vertices),
- Relation: The maximum clique problem in a graph is equivalent to the maximum independent set problem in the graph’s complement.
- finding a maximum weight clique in a weighted graph,
- listing all maximal cliques (cliques that cannot be enlarged), and
- testing whether a graph contains a clique larger than a given size
- maximum clique problem: finding a maximum clique (a clique with the largest possible number of vertices),
- Graph coloring
- Does G admit a proper vertex coloring with k colors?
- maximal independent set (i.e. no other vertex can be added to the set)
Maximal Independent Set
- Greedy algorithm to find a maximal independent set in a graph (but not necessarily a maximum independent set).
- In tree, the algorithm finds a maximum independent set.
Maximum Weighted Independent Set Problem
Find an independent set where the sum of vertex weights is maximized.