This is a Java Program to Implement Graph Coloring Algorithm. Graph Coloring is a way of coloring the vertices of a undirected graph such that no two adjacent vertices share the same color.
Here is the source code of the Java Program to Implement Graph Coloring Algorithm. The Java program is successfully compiled and run on a Windows system. The program output is also shown below.
/** ** Java Program to Implement Graph Coloring Algorithm **/ import java.util.Scanner; /** Class GraphColoring **/ public class GraphColoring { private int V, numOfColors; private int[] color; private int[][] graph; /** Function to assign color **/ public void graphColor(int[][] g, int noc) { V = g.length; numOfColors = noc; color = new int[V]; graph = g; try { solve(0); System.out.println("No solution"); } catch (Exception e) { System.out.println("\nSolution exists "); display(); } } /** function to assign colors recursively **/ public void solve(int v) throws Exception { /** base case - solution found **/ if (v == V) throw new Exception("Solution found"); /** try all colours **/ for (int c = 1; c <= numOfColors; c++) { if (isPossible(v, c)) { /** assign and proceed with next vertex **/ color[v] = c; solve(v + 1); /** wrong assignement **/ color[v] = 0; } } } /** function to check if it is valid to allot that color to vertex **/ public boolean isPossible(int v, int c) { for (int i = 0; i < V; i++) if (graph[v][i] == 1 && c == color[i]) return false; return true; } /** display solution **/ public void display() { System.out.print("\nColors : "); for (int i = 0; i < V; i++) System.out.print(color[i] +" "); System.out.println(); } /** Main function **/ public static void main (String[] args) { Scanner scan = new Scanner(System.in); System.out.println("Graph Coloring Algorithm Test\n"); /** Make an object of GraphColoring class **/ GraphColoring gc = new GraphColoring(); /** Accept number of vertices **/ System.out.println("Enter number of verticesz\n"); int V = scan.nextInt(); /** get graph **/ System.out.println("\nEnter matrix\n"); int[][] graph = new int[V][V]; for (int i = 0; i < V; i++) for (int j = 0; j < V; j++) graph[i][j] = scan.nextInt(); System.out.println("\nEnter number of colors"); int c = scan.nextInt(); gc.graphColor(graph, c); } }
Graph Coloring Algorithm Test Enter number of vertices 10 Enter matrix 0 1 0 0 0 1 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 1 0 1 0 0 0 1 0 1 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 1 1 0 0 1 0 0 1 0 0 0 1 0 0 0 1 0 1 1 0 0 0 0 0 0 0 1 0 1 1 0 0 Enter number of colors 3 Solution exists Colors : 1 2 1 2 3 2 1 3 3 2
Related posts:
Concatenating Strings In Java
Spring REST API + OAuth2 + Angular (using the Spring Security OAuth legacy stack)
A Guide to LinkedHashMap in Java
Spring 5 and Servlet 4 – The PushBuilder
Java Program to Implement Floyd-Warshall Algorithm
Spring RestTemplate Error Handling
Guide to ThreadLocalRandom in Java
Period and Duration in Java
Base64 encoding và decoding trong Java 8
The DAO with Spring and Hibernate
Java – Try with Resources
Configuring a DataSource Programmatically in Spring Boot
Introduction to Spring Data REST
Exception Handling in Java
Java – Reader to String
Java Program to Implement Fermat Primality Test Algorithm
Spring Boot - Internationalization
Hướng dẫn sử dụng Java Reflection
Java Program to Find the Mode in a Data Set
REST Pagination in Spring
Filtering a Stream of Optionals in Java
So sánh Array và ArrayList trong Java
Java Program to Implement Karatsuba Multiplication Algorithm
SOAP Web service: Upload và Download file sử dụng MTOM trong JAX-WS
Java Program to Implement Hamiltonian Cycle Algorithm
Java 9 Stream API Improvements
Java Byte Array to InputStream
Java Deep Learning Essentials - Yusuke Sugomori
Java Program to Find the Edge Connectivity of a Graph
Java Program to Perform Matrix Multiplication
Java Program to Solve any Linear Equation in One Variable
Java Program to Implement Heap