代码搜索:Infinity
找到约 1,499 项符合「Infinity」的源代码
代码结果 1,499
www.eeworm.com/read/371997/9525702
m ex5bvp.m
function ex5bvp
%EX5BVP Example 5 of the BVP tutorial.
% Falkner-Skan BVPs are discussed in T. Cebeci and H.B. Keller,
% Shooting and parallel shooting methods for solving the Falkner-Skan
%
www.eeworm.com/read/371255/9559247
m hnormalise.m
% HNORMALISE - Normalises array of homogeneous coordinates to a scale of 1
%
% Usage: nx = hnormalise(x)
%
% Argument:
% x - an Nxnpts array of homogeneous coordinates.
%
% Returns:
%
www.eeworm.com/read/166306/10024625
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/165059/10077636
cpp floyd.cpp
// Floyd.cpp : 定义控制台应用程序的入口点。
//
#include "stdafx.h"
using namespace std;
#define INFINITY -1
#define VERTEX 10
typedef int VRType;
typedef char InfoType;
typed
www.eeworm.com/read/358694/10181707
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/358507/10186117
cpp hello.cpp
#include
#include
#define INFINITY 32767
#define MAX_VEX 20 //最大顶点个数
bool *visited; //访问标志数组
//图的邻接矩阵存储结构
typedef struct{
char *vexs; //顶点向量
int arcs[MAX_VEX
www.eeworm.com/read/281000/10273797
cpp fig09_18.cpp
void Graph::unweighted( Vertex s )
{
Queue q;
for each Vertex v
v.dist = INFINITY;
s.dist = 0;
q.enqueue( s );
while( !q.isEmpty( ) )
{
V