代码搜索:Graph
找到约 10,000 项符合「Graph」的源代码
代码结果 10,000
www.eeworm.com/read/101082/6250708
mk makelocal.mk
# @(#)Makelocal.mk 4.1 ULTRIX 7/17/90
include $(GMAKEVARS)
LOADLIBES=-lplot -lm
AOUT=graph
OBJS=graph.o
graph.o: graph.c
install:
install -c -s graph ${DESTROOT}/usr/bin/graph
include $(GMAKE
www.eeworm.com/read/100285/6272160
out koi8-ctype.out
char# char alnum alpha cntrl digit lower graph print punct space upper xdigit lo up
chr#0 +
chr#1 +
www.eeworm.com/read/489663/6323779
m iscycle.m
%
%--------------------iscycle.m---------------------------
%
% input: korif = set of vertices in the graph
% akmi = edge we insert in graph
% output: korif = The "new: set of vertices
%
www.eeworm.com/read/219605/6341860
c 8_3_1.c
/* ======================================== */
/* 程式实例: 8_3_1.c */
/* 图形的深度优先搜寻法 */
/* ======================================== */
#include
www.eeworm.com/read/219605/6341864
c 8_6.c
/* ======================================== */
/* 程式实例: 8_6.c */
/* 使用拓扑排序来找图回路 */
/* ======================================== */
#include
#def
www.eeworm.com/read/219605/6341866
c 8_2_2.c
/* ======================================== */
/* 程式实例: 8_2_2.c */
/* 图形的邻接链表表示法 */
/* ======================================== */
#include
www.eeworm.com/read/494022/6386352
java topologicalsorttest.java
/*
* @title:拓扑排序
* @input: 一个有向无环图,表述为一个邻接矩阵graph[n][],其中graph[i][0]为顶点i的入度,其余为其后继结点
* @output: 一个拓扑序列list
*/
import java.util.*;
public class TopologicalSortTest
{
public static void
www.eeworm.com/read/493282/6399793
cpp floydmain.cpp
//Floyd1main.cpp 医院选址
#include
#include
//#include //引入标准库中的头文件
//#include "graph.cpp" //引用graph.cpp文件
#include "floyd1.cpp"
www.eeworm.com/read/493106/6406641
cpp 图的遍历ywc.cpp
#include
#include
#include
#include
#include
#define MaxQueue 100 // 队列的最大容量
struct node // 图形的顶点结构
{
int vertex; //顶点资料
www.eeworm.com/read/492033/6430286
h graphmat.h
#ifndef GRAPHMAT_H
#define GRAPHMAT_H
#include "iotools.h"
#include "alias.h"
struct matrix;
class Equation;
class tablefunct;
/**
This class defines special type of material model which is
us