代码搜索:fastest
找到约 177 项符合「fastest」的源代码
代码结果 177
www.eeworm.com/read/145070/12754340
h fastest_coeffs.h
/*
** Copyright (C) 2002-2004 Erik de Castro Lopo
**
** This program is free software; you can redistribute it and/or modify
** it under the terms of the GNU General Public Licen
www.eeworm.com/read/420803/2061436
h fastest_coeffs.h
/*
** Copyright (C) 2002-2004 Erik de Castro Lopo
**
** This program is free software; you can redistribute it and/or modify
** it under the terms of the GNU General Public L
www.eeworm.com/read/457216/1599694
m fastest_mixing_mc.m
% Section 4.6.3: Find the fastest mixing Markov chain on a graph
% Boyd & Vandenberghe "Convex Optimization"
% Jo雔le Skaf - 09/26/05
%
% The 'fastest mixing Markov chain problem' is to find a transiti
www.eeworm.com/read/373026/2767630
m fastest_mixing_mc.m
% Section 4.6.3: Find the fastest mixing Markov chain on a graph
% Boyd & Vandenberghe "Convex Optimization"
% Jo雔le Skaf - 09/26/05
%
% The 'fastest mixing Markov chain problem' is to find a transiti
www.eeworm.com/read/249221/4454143
svn-base fastest_coeffs.h.svn-base
/*
** Copyright (C) 2002-2004 Erik de Castro Lopo
**
** This program is free software; you can redistribute it and/or modify
** it under the terms of the GNU General Public Licen
www.eeworm.com/read/464632/7066921
txt celeron and pentium.txt
The differences between the Celeron and Pentium III processors can be confusing. In addition, the Celeron chip got bad reviews when it first was introduced in 1998, and that impression has stuck in th
www.eeworm.com/read/484221/6581979
txt h10037.txt
/* Solution for "bridge" problem, a generalization of a problem
generally believed to be a Microsoft intelligence test.
*/
/* Algorithm
Observation 1: somebody has to get the flashl
www.eeworm.com/read/276978/10691102
txt output.txt
9 18 20 24 32 35
12 16 22 25 30 37
0 1 0 1 1 0
38 39
The fastest way costs 38 minutes.
www.eeworm.com/read/276978/10691119
cpp assemble line.cpp
#include "Assemble Line.h"
#define MAX -1;
int stationNum;
int *stationCostL,*stationCostR;
int *jumpL2R,*jumpR2L;
int *fastestL,*fastestR;//记录目前的最短路径
int inL,inR,outL,outR;
bool *preL,*preR,
www.eeworm.com/read/155109/11898401
m cart.m
function m = cart(v1,v2)
% Cartesian product of two vectors
%
% function m = cart(v1,v2)
%
% v1,v2 vectors
% m matrix (length(v1)*length(v2),2)
%
% In m the last column runs fastest.