代码搜索:Infinity

找到约 1,499 项符合「Infinity」的源代码

代码结果 1,499
www.eeworm.com/read/303129/3815311

h adjmatrix2.h

#include #define MAX_VERTEX_NUM 10 /*最多顶点个数*/ #define INFINITY 32768 /*表示极大值,即∞*/ #define True 1 #define False 0 #define Error -1 #define Ok 1 typedef enum{D
www.eeworm.com/read/301877/3831216

h utils.h

/* utility definitions */ #ifdef _POSIX2_RE_DUP_MAX #define DUPMAX _POSIX2_RE_DUP_MAX #else #define DUPMAX 255 #endif #define INFINITY (DUPMAX + 1) #define NC (CHAR_MAX - CHAR_MIN + 1) typedef unsign
www.eeworm.com/read/411046/2195021

h utils.h

/* utility definitions */ #ifdef _POSIX2_RE_DUP_MAX #define DUPMAX _POSIX2_RE_DUP_MAX #else #define DUPMAX 255 #endif #define INFINITY (DUPMAX + 1) #define NC (CHAR_MAX - CHAR_MIN + 1) typedef unsign
www.eeworm.com/read/351636/3102308

h vcl_limits.h

// This is vcl/vcl_limits.h #ifndef vcl_limits_h_ #define vcl_limits_h_ #include "vcl_compiler.h" #if !VCL_CXX_HAS_HEADER_LIMITS || !VCL_USE_NATIVE_STL || (!VCL_NUMERIC_LIMITS_HAS_INFINITY &
www.eeworm.com/read/475868/6768016

c 4-8.c

#include"stdio.h" #include"graphics.h" #define INFINITY 32767 #define MAX_VERTEX_NUM 20 /*最大顶点数*/ typedef struct ArcCell { /*定义邻接矩阵*/ int adj; char *info; }AdjMatrix[MAX_VERTEX_NUM
www.eeworm.com/read/393626/8272982

cpp guide.cpp

#define INFINITY 10000 /*无穷大*/ #define MAX_VERTEX_NUM 40 #define MAX 40 #include #include #include #include typedef struct ArCell { int adj; //路
www.eeworm.com/read/370476/9599876

cpp 图.cpp

#include #include #define Maxvex 20 //最大结点数 #define FALUSE 0 //没找到最短路径 #define TURE 1 //找到最短路径 int IN=32767; //没有路径INFINITY int vexnum; /
www.eeworm.com/read/370011/9625093

c 4-8.c

#include"stdio.h" #include"graphics.h" #define INFINITY 32767 #define MAX_VERTEX_NUM 20 /*最大顶点数*/ typedef struct ArcCell { /*定义邻接矩阵*/ int adj; char *info; }AdjMatrix[MAX_VERTEX_NUM
www.eeworm.com/read/184667/9089988

cpp 最小生成树.cpp

//链表,这个链表除了头定义以外没有任何操作函数, //链表元素 #define UNVISITED 0 #define VISITED 1 #define INFINITY 9999999 #define ROOT -1 #include #include #include template
www.eeworm.com/read/365461/9862878

txt prim.txt

#include #include #include #define INFINITY 10000 #define MAX_VERTEX_NUM 20 #define MAX_NAME 5 #define OK 0 typedef char VertexType[MAX_NAME]; typedef struct Nrcel