代码搜索:Clique

找到约 304 项符合「Clique」的源代码

代码结果 304
www.eeworm.com/read/466339/7033991

cpp 回溯法解最大团问题.cpp

/* 无向图G的最大团和最大独立子集问题都可以用回溯法在O(n2^n)时间内解决。 子集树就有2^n个结点,n是限界函数时间 图G的最大团和对大独立子集问题都可以看作是图G的顶点集v的子集选取问题 因此可以用子集树表示问题的解空间 与解装载问题很相似,设当前扩展结点z位于解空间树的第i层。在进入左子树 前,必须确认从顶点i到已经选入的顶点集合中每一个每一个顶点都有边相连。在 进入右子 ...
www.eeworm.com/read/460783/7240794

txt 最大团.txt

//最大团 //返回最大团大小和一个方案,传入图的大小n和邻接阵mat //mat[i][j]为布尔量 #define MAXN 60 void clique(int n, int* u, int mat[][MAXN], int size, int& max, int& bb, int* res, int* rr, int* c) { int i, j, vn, v[MAXN
www.eeworm.com/read/459616/7270167

out bbclique.out

enter number of edges enter edge 1 enter edge 2 enter edge 3 enter edge 4 enter edge 5 enter edge 6 enter edge 7 enter edge 8 enter edge 9 enter edge 10 Size of max clique is 4 Vertex selection vector
www.eeworm.com/read/459616/7270554

out bclique.out

enter number of edges of 7 vertex graph enter edge 1 enter edge 2 enter edge 3 enter edge 4 enter edge 5 enter edge 6 enter edge 7 enter edge 8 enter edge 9 enter edge 10 Size of max clique is 4 Verte
www.eeworm.com/read/457804/7317665

txt 最大团.txt

//最大团 //返回最大团大小和一个方案,传入图的大小n和邻接阵mat //mat[i][j]为布尔量 #define MAXN 60 void clique(int n, int* u, int mat[][MAXN], int size, int& max, int& bb, int* res, int* rr, int* c) { int i, j, vn, v[MAXN
www.eeworm.com/read/442453/7651370

txt instruÇoes.txt

_-_instale o removeIT pro _-_ABRA O PROGRAMA E DEIXE FAZER AS ATUALIZA荗ES DO PROGRAMA _-_AS ATUALIZA荗ES DO BANCO DE DADOS _-_APOS AS ATUALIZA荗ES, CLIQUE EM "CONTINUE USANDO ESSA VERSAO GRATUITA" _
www.eeworm.com/read/197077/8032181

txt 最大团.txt

//最大团 //返回最大团大小和一个方案,传入图的大小n和邻接阵mat //mat[i][j]为布尔量 #define MAXN 60 void clique(int n, int* u, int mat[][MAXN], int size, int& max, int& bb, int* res, int* rr, int* c) { int i, j, vn, v[MAXN
www.eeworm.com/read/152629/5673156

java junctiontreeinferencer.java

/* Copyright (C) 2003 Univ. of Massachusetts Amherst, Computer Science Dept. This file is part of "MALLET" (MAchine Learning for LanguagE Toolkit). http://www.cs.umass.edu/~mccallum/mallet Th
www.eeworm.com/read/152629/5673159

java junctiontree.java

/* Copyright (C) 2003 Univ. of Massachusetts Amherst, Computer Science Dept. This file is part of "MALLET" (MAchine Learning for LanguagE Toolkit). http://www.cs.umass.edu/~mccallum/mallet Th
www.eeworm.com/read/478955/6708645

txt 最大团.txt

//最大团 //返回最大团大小和一个方案,传入图的大小n和邻接阵mat //mat[i][j]为布尔量 #define MAXN 60 void clique(int n, int* u, int mat[][MAXN], int size, int& max, int& bb, int* res, int* rr, int* c) { int i, j, vn, v[MAXN