testmaxmatch.cpp
来自「也是一个关于匹配方面的程序」· C++ 代码 · 共 28 行
CPP
28 行
/********************************************************************
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 + =
减小字号Ctrl + -
显示快捷键?