图论最少着色问题

无向图最少着色问题
DFS+回溯

#include<iostream>
using namespace std;
int map[100][100]={0};
int v=4;
int color[100]={0};
int result=10000;


/*无向图至少染色问题*/ 
int ok(int depth,int c){
	
	
	for(int i=1;i<=v;i++){
		if(map[i][depth]==1||map[depth][i]==1){
			if(color[i]==c)
				return 0;
			if(color[i]==0)
				continue;
			
			
		}
	}
	return 1;
} 

void  dfs(int depth,int color_s){
	
	if(color_s>=result){//当前颜色大于了最小着色数 回退 
		return ;
	}
	
	if(depth>v){    //着色完成 
		result=result<color_s?result:color_s;
		return ;
	}
	
	
	for(int i=1;i<=color_s;i++){
		if(ok(depth,i)==1){
			color[depth]=i;
			dfs(depth+1,color_s);
			color[depth]=0;
			
		}	
	}
	
	/*重新上一个颜色*/
	color[depth]=color_s+1;
	dfs(depth+1,color_s+1);
	color[depth]=0;
	
	
	
}

int main(){
	v=5;
	map[1][2]=1;
	map[1][3]=1;
	map[1][4]=1;
	map[2][3]=1;
	map[2][4]=1;
	map[2][5]=1;
	map[3][4]=1;
	map[4][5]=1;
	map[3][5]=1;
	map[1][5]=1;
	dfs(1,0);
	cout<<result;
	return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值