代码搜索:Graph
找到约 10,000 项符合「Graph」的源代码
代码结果 10,000
www.eeworm.com/read/419802/10837904
cpp 图论_最短路_dij_邻接矩阵.cpp
#include
using namespace std;
const int SIZE = 201;
const int INF = 1000000000;
int n;
int dist[SIZE];
int graph[SIZE][SIZE];
bool visit[SIZE];
//顶点坐标从0开始
void Dijkstra(int s)
www.eeworm.com/read/273905/10894961
cpp tu.cpp
#define M 20
#include
#include
#include
/*定义图*/
typedef struct{
int V[M];
int R[M][M];
int vexnum;
}Graph;
typedef struct ArcBox{
int tail,head;
www.eeworm.com/read/272848/10940575
output testbipartitecover.output
Enter a 25 edge 17 vertex bipartite 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
enter edge 11
e
www.eeworm.com/read/272848/10940896
cpp testallpairs.cpp
// test AdjacencyWDigraph::allPairs
#include
#include "adjacencyWDigraph.h"
#include "adjacencyWGraph.h"
using namespace std;
template
void outputPath(T **c, int
www.eeworm.com/read/272848/10941066
output testconnected.output
Enter number of edges in graph
Enter weighted edge 1
Enter weighted edge 2
Enter weighted edge 3
Enter weighted edge 4
Enter weighted edge 5
Enter weighted edge 6
Graph 0 is
Number of Vertices
www.eeworm.com/read/272848/10941122
cpp testmaxprofitbbmaxclique.cpp
// test adjacencyGraph::maxProfitBBMaxClique
#include
#include
#include "adjacencyGraph.h"
#include "unweightedEdge.h"
using namespace std;
void main(void)
{
/
www.eeworm.com/read/272848/10941151
cpp testconnected.cpp
// test graph::connected
#include
#include "graph.h"
#include "adjacencyWDigraph.h"
#include "adjacencyDigraph.h"
#include "adjacencyWGraph.h"
#include "adjacencyGraph.h"
#include
www.eeworm.com/read/272848/10941153
output testbtmaxclique.output
Enter number of edges in 7 vertex graph
Enter unweighted edge 1
Enter unweighted edge 2
Enter unweighted edge 3
Enter unweighted edge 4
Enter unweighted edge 5
Enter unweighted edge 6
Enter unw
www.eeworm.com/read/272848/10941517
cpp testgraphsearchmethods.cpp
// test graph::dfs and graph::bfs
#include
#include "graph.h"
#include "adjacencyWDigraph.h"
#include "adjacencyDigraph.h"
#include "adjacencyWGraph.h"
#include "adjacencyGraph.h"
www.eeworm.com/read/271119/11006479
java algthread.java
/* AlgThread.java */
import java.awt.*;
import java.io.*;
import java.net.*;
public class AlgThread extends Thread {
static int max_data = 10;
static String[] dataSets =
{"Graph