代码搜索:Infinity
找到约 1,499 项符合「Infinity」的源代码
代码结果 1,499
www.eeworm.com/read/196814/8058843
c dijk.c
#include "mex.h"
#include "iostream.h"
#include "stdlib.h"
#include "stdio.h"
#define INFINITY 10000
void dijkstra(double *g,int u1 ,int u2,double *out,double *value,int mrows,int ncols)
{doubl
www.eeworm.com/read/333761/12661496
cpp 建医院.cpp
#include
const int INFINITY=10000000;
using namespace std;
typedef char *VEXS;
typedef struct
{
VEXS vexs;
int vexnum;
}MGraph;
typedef bool ***PathMatrix;
typedef int **Distance
www.eeworm.com/read/244945/12829627
c dijk.c
#include "mex.h"
#include "iostream.h"
#include "stdlib.h"
#include "stdio.h"
#define INFINITY 10000
void dijkstra(double *g,int u1 ,int u2,double *out,double *value,int mrows,int ncols)
{doubl
www.eeworm.com/read/143036/12903256
cpp 图的最小生成树.cpp
#define INFINITY INT_MAX
#define MN 20
#include
#include
typedef char VertexType;
typedef int Edgetype;
typedef struct {
VertexType vexs[MN];
Edgetype edges[MN][MN];
www.eeworm.com/read/329331/12960624
c dijk.c
#include "mex.h"
#include "iostream.h"
#include "stdlib.h"
#include "stdio.h"
#define INFINITY 10000
void dijkstra(double *g,int u1 ,int u2,double *out,double *value,int mrows,int ncols)
{doubl
www.eeworm.com/read/239349/13285905
cpp prim.cpp
#include
#define infinity 999999999
int main()
{
long map[101][101],d[101],n,now,next,tot=0;
bool s[101]={false};int f[101];
long i,j,k;int t;
struct
{int first;
www.eeworm.com/read/322363/13381278
c dsf.c
#include
#include
#define INFINITY 0
#define MAX_VEX 20 /*最大顶点个数 */
int visited[20]; /*访问标志数组 */
/*图的领结矩阵存储结构*/
typedef struct{
char *vexs; /*顶点向量*/
in
www.eeworm.com/read/317703/13499282
cpp dijkstra.cpp
#include
#include
#define MVNum 100 //最大顶点数
#define Infinity 32767
typedef struct{
char vexs[MVNum];
int arcs[MVNum][MVNum];
}MGraph;
void CreateMGraph(MGraph *G,int
www.eeworm.com/read/306748/13738926
c atan.c
/* atan.c
*
* Inverse circular tangent
* (arctangent)
*
*
*
* SYNOPSIS:
*
* double x, y, atan();
*
* y = atan( x );
*
*
*
* DESCRIPTION:
*
* Returns radian angle between -p
www.eeworm.com/read/303905/13806522
cpp grdijkm2.cpp
#include
#include
#include "book.h"
#define INFINITY 65535 // Big enough for simple tests
#include "grmat.h"
#include "minheap.h"
int minVertex(Graph*, int*);