Assignment 14 Graph Coloring Problem
Assignment 14 Graph Coloring Problem
To implement and solve the Graph Coloring Problem using a greedy algorithm.
Code:
#include <stdio.h>
#include <stdbool.h>
greedyColoring(graph);
return 0;
}
Output:
Vertex Color
0 0
1 1
2 2
3 0
4 0