代码搜索:Infinity

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

代码结果 1,499
www.eeworm.com/read/330769/12869792

cpp shortestpath.cpp

#define INFINITY 10000 #define MAX_VERTEX_NUM 32 #define MAX_ARC_NUM 50 #include #include typedef struct{ //int v; char city[20]; }VertexType;//顶点 typedef struct
www.eeworm.com/read/140130/6283288

h queue.h

#define INFINITY 100000000 struct VerNode{ public: CRect m_rect; struct VerNode* m_pnextver; struct ArcNode* m_pfirstarc; CString m_strname; BOOL m_bvisit; int m_nvisit; }; struct Arc
www.eeworm.com/read/488736/6485071

cpp breadth first search.cpp

#include #include #define MAX 20 #define WHITE 0 #define GRAY 1 #define BLACK 2 #define INFINITY 999999 #define NIL -1 int *queue , rear; int adjMatrix[MAX][MAX]; void
www.eeworm.com/read/257099/11950148

head tu.head

#define INFINITY INT_MAX #define MAX_VERTEX_NUM 20 #define MAXQSIZE 10 //最大队列长度 #define FALSE 0 #define TRUE 1 typedef int VRType; typedef char VertexType; typedef int Status; typedef
www.eeworm.com/read/222341/14696019

cpp 最后代码.cpp

#include #include #include #include #include using namespace std; #define MAX 1000 //表示木材的最大个数 #define INFINITY 10000 #define SETN 360
www.eeworm.com/read/479931/1326337

cgs maveh.cgs

# frv testcase for maveh $FRi,$FRj,$FRj on fr400 machines # mach: all .include "../testutils.inc" start .global maveh maveh: ; Test Rounding toward positive infinity via RDAV or_spr_immed 0x20
www.eeworm.com/read/312645/3652663

changelog

2007-09-04 Stephen Finney 2007-09-04 Jonathan Larmour * src/misc/infconst.c: Declare infinity byte order as dependent on double byte order, not intege
www.eeworm.com/read/298327/3867806

h ipathfinder.h

#ifndef IPATHFINDER_HPP #define IPATHFINDER_HPP #include struct MoveData; class float3; class CSolidObject; //Cost constants. const float PATHCOST_INFINITY = 1e9f; const float P
www.eeworm.com/read/410728/2202993

cgs maveh.cgs

# frv testcase for maveh $FRi,$FRj,$FRj on fr400 machines # mach: all .include "../testutils.inc" start .global maveh maveh: ; Test Rounding toward positive infinity via RDAV or_spr_immed 0x20
www.eeworm.com/read/395929/2430631

c ldexp.c

/* * lib-src/ansi/math/ldexp.c * ANSI/ISO 9899-1990, Section 7.5.4.3. * * double ldexp (float x, int exp) * Return (x * 2 ^ exp). * * Exceptions: * EDOM NaN x is NaN * ERANGE [+-]Infinity ov