⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 testmaxmatch.cpp

📁 也是一个关于匹配方面的程序
💻 CPP
字号:
/********************************************************************
	created:	2007/04/20
	created:	20:4:2007   15:21
	filename: 	g:\$lvkai\$study\$experiment\myedmondson\mymaxmatch\testmaxmatch.cpp
	file path:	g:\$lvkai\$study\$experiment\myedmondson\mymaxmatch
	file base:	testmaxmatch
	file ext:	cpp
	author:		lvkai
	
	purpose:	
*********************************************************************/

#include<iostream>
#include"myGraph.h"
#include"myMaxMatch.h"
int main(int argc,char** argv)
{
	cout<<"hello maxMatch"<<endl;
	MyGraph g;
	MyGraph result;
	g.readGraph();
	MyMaxMatch match(g);
	match.compute();
	////match.matchEdge
	match.printM();
	return 0;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -