代码搜索:Graph
找到约 10,000 项符合「Graph」的源代码
代码结果 10,000
www.eeworm.com/read/387762/8655213
h edge.h
// Abstract class for graph edges
class Edge {
int v1() =0; // Return from vertex
int v2() =0; // Return to vertex
};
www.eeworm.com/read/387762/8655243
cpp grtsdl.cpp
#include
#include
#include "book.h"
#include "grlist.h"
void printout(int v) {
cout
www.eeworm.com/read/387762/8655424
cpp grfloydm.cpp
#include
#include
#include "book.h"
#include "grmat.h"
// Floyd's all-pairs shortest paths algorithm
void Floyd(Graph* G) {
int D[G->n()][G->n()]; // Store
www.eeworm.com/read/387762/8655429
cpp grtsdm.cpp
#include
#include
#include "book.h"
#include "grmat.h"
void printout(int v) {
cout
www.eeworm.com/read/431190/8703952
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/186716/8914486
m stair.m
function [xo,yo] = stair(x,y)
%STAIR Stairstep graph (bar graph without internal lines).
% Stairstep plots are useful for drawing time history plots of
% digital sampled-data systems.
% STAIR(Y) draw
www.eeworm.com/read/186449/8932885
cpp 最小代价生成树.cpp
#include
enum Boolean{FALSE,TRUE};
class Graph{
private:int nmax;
int *length;Boolean *s; int *dist;int* pre;
public:Graph(int max)
{nmax=max;length=new int[nmax][nmax];s=new Boo
www.eeworm.com/read/186210/8952589
java jgraphgrouprenderer.java
package com.softwarematch.workflow;
import java.awt.Color;
import java.awt.Component;
import java.awt.Graphics;
import java.awt.Rectangle;
import java.awt.geom.Point2D;
import org.jgraph.JGraph;
im
www.eeworm.com/read/186210/8952610
java jgraphgraphfactory.java
package com.softwarematch.workflow;
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Dimension;
import java.awt.FlowLayout;
import java.awt.Frame;
import java.awt.GridLayout;
imp
www.eeworm.com/read/382761/9001762
cpp 控制递归的深度.cpp
// 控制递归的深度.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include
// 图,相邻节点用1表示,0表示两节点间没边
int graph[6][6]={{0,1,1,1,0,0},{1,0,1,1,0,0},{1,1,