博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Geeks - Check whether a given graph is Bipartite or not 二分图检查
阅读量:6285 次
发布时间:2019-06-22

本文共 957 字,大约阅读时间需要 3 分钟。

检查一个图是否是二分图的算法

使用的是宽度搜索:

1 初始化一个颜色记录数组

2 利用queue宽度遍历图

3 从随意源点出发。染色0。 或1

4 遍历这点的邻接点。假设没有染色就染色与这个源点相反的颜色,假设已经染色而且和源点的值相反。那么就是合法点,假设是同样的颜色。那么就不能是二分图

 

參考:http://www.geeksforgeeks.org/bipartite-graph/

#include 
#include
#include
using namespace std;class CheckwhetheragivengraphisBipartiteornot{ const static int V = 4; bool isBipartite(int G[][V], int src) { int colors[V]; fill(colors, colors+V, -1); colors[src] = 1; queue
qu; qu.push(src); while (qu.size()) { int u = qu.front(); qu.pop(); for (int v = 0; v < V; v++) { if (G[u][v] && colors[v] == -1) { colors[v] = 1 - colors[u]; qu.push(v); } else if (G[u][v] && colors[v] == colors[u]) return false; } } return true; }public: CheckwhetheragivengraphisBipartiteornot() { int G[][V] = { {0, 1, 0, 1}, {1, 0, 1, 0}, {0, 1, 0, 1}, {1, 0, 1, 0} }; isBipartite(G, 0) ? cout << "Yes" : cout << "No"; }};

转载地址:http://gyiva.baihongyu.com/

你可能感兴趣的文章
spring batch中用到的表
查看>>
资源文件夹res/raw和assets的使用
查看>>
UINode扩展
查看>>
LINUX常用命令
查看>>
百度云盘demo
查看>>
概率论与数理统计习题
查看>>
初学structs2,简单配置
查看>>
Laravel5.0学习--01 入门
查看>>
时间戳解读
查看>>
sbin/hadoop-daemon.sh: line 165: /tmp/hadoop-hxsyl-journalnode.pid: Permission denied
查看>>
@RequestMapping 用法详解之地址映射
查看>>
254页PPT!这是一份写给NLP研究者的编程指南
查看>>
《Data Warehouse in Action》
查看>>
String 源码浅析(一)
查看>>
Spring Boot 最佳实践(三)模板引擎FreeMarker集成
查看>>
Fescar 发布 0.2.3 版本,支持 Redis 和 Apollo
查看>>
Google MapReduce到底解决什么问题?
查看>>
CCNP-6 OSPF试验2(BSCI)
查看>>
Excel 2013 全新的图表体验
查看>>
openstack 制作大于2TB根分区自动扩容的CENTOS镜像
查看>>