3 - Graph Coloring
Jump to navigation
Jump to search
Problem Description
Graph coloring problem is to assign colors to certain elements of a graph subject to certain constraints.
Vertex coloring is the most common graph coloring problem. The problem is, given m colors, find a way of coloring the vertices of a graph such that no two adjacent vertices are colored using same color. The other graph coloring problems like Edge Coloring (No vertex is incident to two edges of same color) and Face Coloring (Geographical Map Coloring) can be transformed into vertex coloring.
Bounds Chart
Error creating thumbnail: Unable to save thumbnail to destination
Step Chart
Error creating thumbnail: Unable to save thumbnail to destination
Improvement Table
Complexity Classes | Algorithm Paper Links | Lower Bounds Paper Links |
---|---|---|
Exp/Factorial | [- Brute-force search (1852)]
Beigel & Eppstein; 1995 (1995) |
|
Polynomial > 3 | ||
Cubic | ||
Quadratic | Vlasie (1995) | |
nlogn | ||
Linear | Karger, Blum (1997) | |
logn |