代码搜索:graph
找到约 10,000 项符合「graph」的源代码
代码结果 10,000
www.eeworm.com/read/288182/8648261
doc graph.doc
www.eeworm.com/read/387809/8652734
cpp graph.cpp
#include
#include
#include "list.h"
#include "string.h"
#include "poly.h"
#include "graph.h"
#include "queue.h"
graph newGraph(mystring name)
{
graph g=(graph)mallo
www.eeworm.com/read/387809/8652736
h graph.h
#ifndef GRAPH_H
#define GRAPH_H
#include "list.h"
#include "poly.h"
#include "string.h"
#include "tree.h"
enum edgeClassif {ORD,TRE,BACK,FORW,CROSS}; //边的分类,共有四种:树边、向后边、向前边,行向边,初始值为ORD
www.eeworm.com/read/387809/8652770
ppt graph.ppt
www.eeworm.com/read/387762/8655363
h graph.h
// Graph abstract class
class Graph {
public:
// Return the number of vertices
virtual int n() =0;
// Return the current number of edges
virtual int e() =0;
// Return the index of the
www.eeworm.com/read/431306/8689567
c graph.c
www.eeworm.com/read/387343/8691763
cpp graph.cpp
#include
#include
#include
#include
#include "graph.h"
graph::graph()
{
int x, y;
struct edge* ep;
FILE* fp = fopen("map.txt", "r");
if(fp==N
www.eeworm.com/read/387343/8691769
h graph.h
#define N 32
struct edge
{
int u, v;
edge *nextedge;
};
struct set
{
int vexnum, edgenum;
struct edge **setedges;
};
class graph
{
private:
int gsize;
set *gsets;
int ssiz
www.eeworm.com/read/431190/8703838
java graph.java
/* Graph class */
import java.awt.*;
import java.io.*;
import java.net.*;
import java.util.*;
public class Graph {
Node nodes[];
Edge edges[];
Arrow arrows[];
int n_nodes, n_edges, n_arrows,
www.eeworm.com/read/431190/8703869