代码搜索:Infinity

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

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

h adjlist.h

/*邻接表存储结构的形式化说明如下:*/ #define INFINITY 32768 /*表示极大值,即∞*/ #define True 1 #define False 0 #define Error -1 #define NULL 0 #define Ok 1 #define MAX_VERTEX_NUM 20 /*最多顶点个数
www.eeworm.com/read/471525/6884678

cpp 7_42.cpp

#include #include #include #include #define VertexType char //数据元素类型 int Vn=6,En=8; //实际顶点数,边或弧数 #define INFINITY 10000 #define TRUE 1 #define FAL
www.eeworm.com/read/270091/11048890

cpp 最小生成树prim.cpp

//? 最小生成树Prim算法 #include #define INFINITY 1000 #define MAXN 10 typedef struct { int vnum; int arcs[MAXN][MAXN]; } graph; void creat_graph(graph *p) { int i,j,n,v1,v2,w;
www.eeworm.com/read/414580/11108268

h graph.h

#include #include #include using namespace std; typedef char ElemType[5]; #define maxnode 90 #define infinity 1000000000 //弧结点:弧头在顶点数组中的序号,权值,指向下一条弧结点的指针 struct A
www.eeworm.com/read/147425/12552449

cpp traverse.cpp

#include #define INFINITY INT_MAX #define MAX_VERTEX_NUM 20 #define V_NUM 8 /* // 定义图的类型 typedef enum { DG, // 有向图, 0 DN, // 有向网, 1 AG, // 无向图, 2 AN // 无向网, 3
www.eeworm.com/read/291478/8416081

cpp 第二题.cpp

//2.按克鲁斯卡尔(Kruskal)算法思想,编制一个寻找最小生成树的完整的程序。 #include #include #define MAX_VEX 20 //最大顶点个数 #define INFINITY 99 //
www.eeworm.com/read/362558/9992586

h orthlist.h

/*图的十字链表结构形式化定义如下:*/ #define MAX_VERTEX_NUM 20 /*最多顶点个数*/ #define INFINITY 32768 /*表示极大值,即∞*/ #define True 1 #define False 0 #define Error -1 #define Ok 1 typedef enu
www.eeworm.com/read/465442/7055033

m aber3_data_opt_sys_inf.m

function [SphT, ComaS, AstTS, Ptz, Dist]=aber3_data_opt_sys_inf(opt_sys, flag_xy, i_c) %ABER3_DATA_OPT_SYS_INF 3rd order aberration contributions for an object at infinity % ABER3_DATA_OPT_SYS_INF r
www.eeworm.com/read/195829/5107118

h orthlist.h

/*图的十字链表结构形式化定义如下:*/ #define MAX_VERTEX_NUM 20 /*最多顶点个数*/ #define INFINITY 32768 /*表示极大值,即∞*/ #define True 1 #define False 0 #define Error -1 #define Ok 1 typedef enu
www.eeworm.com/read/303129/3815312

h orthlist.h

/*图的十字链表结构形式化定义如下:*/ #define MAX_VERTEX_NUM 20 /*最多顶点个数*/ #define INFINITY 32768 /*表示极大值,即∞*/ #define True 1 #define False 0 #define Error -1 #define Ok 1 typedef enu