无向图着色问题

无向图染色问题

#include
using namespace std;
int map[100][100]={0};  //邻接矩阵 
int v=5;                //顶点数 
int color_s=4;    //颜色数 
int color[100]={0};   //颜色标记数组 

int ok(int depth,int c){ //检查当前点是否可以着色C 
	
	for(int i=1;i<=v;i++) 
		if(map[depth][i]==1||map[i][depth]==1){
			if(color[i]==0)  //邻居没有染色 
				continue;	
			if(c==color[i])  //相同颜色不能染 
				return 0;
		}
	return 1;
}

void dfs(int depth){
	
	if(depth>v){  //一种染色方式 
		for(int i=1;i<=v;i++)
			cout<

你可能感兴趣的:(图论算法)