代码搜索:Infinity

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

代码结果 1,499
www.eeworm.com/read/485329/6558347

java graphdij.java

import java.awt.*; import java.io.*; import java.util.*; import java.net.*; public class GraphDij { static final double infinity = 1.0e300; static final double zero = 0.00; static String start
www.eeworm.com/read/483726/6592424

cpp carwash.cpp

#include "CarWash.h" #include "Car.h" #include #include const int CarWash::INFINITY=10000; const int CarWash::MAX_SIZE=5; const int CarWash::WASH_TIME =10; CarWash::CarWas
www.eeworm.com/read/407982/11406656

java graphdij.java

import java.awt.*; import java.io.*; import java.util.*; import java.net.*; public class GraphDij { static final double infinity = 1.0e300; static final double zero = 0.00; static String start
www.eeworm.com/read/407982/11406707

java graphdij.java

import java.awt.*; import java.io.*; import java.util.*; import java.net.*; public class GraphDij { static final double infinity = 1.0e300; static final double zero = 0.00; static String start
www.eeworm.com/read/156154/11824023

cpp 图-邻接矩阵-最短路径.cpp

#include // 定义 状态代码 及 数据类型 #define NULL 0 #define OK 1 #define ERROR 0 #define INFINITY 255 #define MAX_VERTEX_NUM 20 typedef int Status; typedef int ElemType; // ----------
www.eeworm.com/read/344437/11879618

cpp graph.cpp

#include #include #include #define INFINITY 10000 #define MAX_VERTAX_NUM 100 #define FALSE 0 #define TRUE 1 #define NULL 0 typedef struct ArcCell{ int adj
www.eeworm.com/read/258131/11882889

m cal_bandwidth.m

function BwMatrix = cal_bandwidth(sim_M_vec, sim_h_vec, percent, precision, filename) % some constants infinity = 100000; epsilon = 1e-4; target_tail = (1-percent)*0.5; % append .mat to filen
www.eeworm.com/read/257001/11961478

h mgraph.h

#include #include #define INFINITY 1000 #define MAX_VERTEX_NUM 20 typedef struct ArcCell{ int adj; //InfoType *info; }ArcCell,AdjMatrix[MAX_VERTEX_NUM][MAX_VERTEX_NUM]; t
www.eeworm.com/read/223481/14639295

m cal_bandwidth.m

function BwMatrix = cal_bandwidth(sim_M_vec, sim_h_vec, percent, precision, filename) % some constants infinity = 100000; epsilon = 1e-4; target_tail = (1-percent)*0.5; % append .mat to filen
www.eeworm.com/read/222762/14675063

cpp shortestpath_dij.cpp

//ShortestPath_DIJ.cpp # include # include # include # include # define INFINITY 1000 # define MAX_VERTEX_NUM 20 # define OK 1 # define ERROR 0