代码搜索:模版匹配

找到约 3,092 项符合「模版匹配」的源代码

代码结果 3,092
www.eeworm.com/read/460783/7240788

txt 一般图匹配(邻接表形式,邻接阵接口).txt

//一般图最大匹配,邻接表形式,复杂度O(n*e) //返回匹配顶点对数,match返回匹配,未匹配顶点match值为-1 //传入图的顶点数n和邻接表list #include #define MAXN 100 int aug(int n,vector list[],int* match,int* v,int now){ int t,ret=0,r;
www.eeworm.com/read/457804/7317659

txt 一般图匹配(邻接表形式,邻接阵接口).txt

//一般图最大匹配,邻接表形式,复杂度O(n*e) //返回匹配顶点对数,match返回匹配,未匹配顶点match值为-1 //传入图的顶点数n和邻接表list #include #define MAXN 100 int aug(int n,vector list[],int* match,int* v,int now){ int t,ret=0,r;
www.eeworm.com/read/197077/8032165

txt 一般图匹配(邻接表形式,邻接阵接口).txt

//一般图最大匹配,邻接表形式,复杂度O(n*e) //返回匹配顶点对数,match返回匹配,未匹配顶点match值为-1 //传入图的顶点数n和邻接表list #include #define MAXN 100 int aug(int n,vector list[],int* match,int* v,int now){ int t,ret=0,r;