代码搜索:Graph
找到约 10,000 项符合「Graph」的源代码
代码结果 10,000
www.eeworm.com/read/279620/10410038
cpp tushendu.cpp
#include
#include
#define INFINITY 32767
#define MAX_VEX 20 //最大顶点个数
bool *visited; //访问标志数组
//图的邻接矩阵存储结构
typedef struct{
char *vexs; //顶点向量
int arcs[MAX_VEX
www.eeworm.com/read/161235/10434530
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
www.eeworm.com/read/423750/10534478
html s_rstats.html
Starting with version 2.0, you can now customize the look of public survey results. The Results Stat
www.eeworm.com/read/423750/10534649
html s_rstats.html
Starting with version 2.0, you can now customize the look of public survey results. The Results Stat
www.eeworm.com/read/351570/10639483
cpp algo0704.cpp
void DFSTraverse(Graph G, Status (*Visit)(int v)) { // 算法7.4
// 对图G作深度优先遍历。
int v;
VisitFunc = Visit; // 使用全局变量VisitFunc,使DFS不必设函数指针参数
for (v=0; v
www.eeworm.com/read/159096/10696448
java defaultmap.java
import java.awt.*;
import java.awt.event.*;
import java.awt.geom.Line2D;
import java.io.BufferedReader;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOExceptio
www.eeworm.com/read/421666/10713515
h glpscg.h
/* glpscg.h (sparse cliqued graph) */
/***********************************************************************
* This code is part of GLPK (GNU Linear Programming Kit).
*
* Copyright (C) 2000,01,02
www.eeworm.com/read/421634/10723197
cpp l7_1.cpp
//建立无向图的邻接矩阵并输出
#include
const int n=4; // 图中顶点数
const int e=5;
typedef int elemtype; // 图中边数
struct graph
{
elemtype v[n+1];
www.eeworm.com/read/276078/10769282
c 图的深度遍历源代码.c
//图的深度遍历源代码
#include
#include
#define INFINITY 32767
#define MAX_VEX 20 //最大顶点个数
bool *visited; //访问标志数组
//图的邻接矩阵存储结构
typedef struct{
char *vexs; //顶点向量
i
www.eeworm.com/read/349837/10797805
cpp algo0704.cpp
void DFSTraverse(Graph G, Status (*Visit)(int v)) { // 算法7.4
// 对图G作深度优先遍历。
int v;
VisitFunc = Visit; // 使用全局变量VisitFunc,使DFS不必设函数指针参数
for (v=0; v