代码搜索:graph
找到约 10,000 项符合「graph」的源代码
代码结果 10,000
www.eeworm.com/read/310776/13644128
c graph.c
www.eeworm.com/read/310215/13654525
java graph.java
package reg2nfa;
public class Graph {
EdgeLink[] graphEdge; //图的边集
private GraphNode start, end; //图的起始结点和终止结点
private EdgeLink currentLink;
private int i = 0;
public Grap
www.eeworm.com/read/310200/13655841
cpp graph.cpp
//图的相关运算的实现graph.cpp
#include"graph.h"
//构造函数,初始化图的邻接矩阵
AdjMatrix::AdjMatrix(int n,int k2)
{int i,j;
if(k2==0){//初始化无(有)向无权图
for(i=0;i
www.eeworm.com/read/310200/13655847
h graph.h
//图的相关数据类型的定义graph.h
//最多顶点数
const int MaxV=10;
//最大权值
const int MaxValue=99;
//定义邻接表中的边结点类型
struct edgenode {
int adjvex; //邻接点域
int weight; //权值域
edgenode* next;//指向下一个边结点的链域
};
//
www.eeworm.com/read/309876/13663425
h graph.h
///////////////////////////
// //
// 图数据结构 graph.h //
// //
//////////////////////////
/////////////用邻接表的存储结构来构造一个图/////////////
#include
#include
#i
www.eeworm.com/read/309457/13670782
h graph.h
/* Supplied file for COMP171 Spring 08 Programming Assignment 3
Release d ate: April. 23, 2008
Due date: 16:00 May. 16, 2008
Author: Kelvin Chan
*/
#ifndef _GRAPH_H_
#define _GRAPH_H_
// Max numb
www.eeworm.com/read/308670/13696439
c graph.c
/*-*/
/********************************************************
* Name: Graph *
* *
* Purpose: *
* Show how bitmapped graphics may be used. *
* *
* Algorithm: Defines a bit
www.eeworm.com/read/308591/13699303
cpp graph.cpp
// Graph.cpp: implementation of the CGraph class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
//#include "Graphic.h"
#include "Graph.h"
#ifd
www.eeworm.com/read/308591/13699308
h graph.h
// Graph.h: interface for the CGraph class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_GRAPH_H__79E5F761_60DB_455C_A13B_DB53D271A0B8__INCLUDED_)
#
www.eeworm.com/read/308176/13706387
cpp graph.cpp
// Graph.cpp: implementation of the CGraph class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "Graphic.h"
#include "Graph.h"
#ifdef