Bicoloring
这个是我在一个人的博客上看到的算法,用的是图和深度遍历算法。我自己照他的想法写了程序,发现是可以的。// Bicoloring.cpp : Defines the entry point for the console application.//#include "stdafx.h"const int MAX=200;using namespace std;int graph[MAX][MAX];int colored[MAX];bool visited[MAX];int