代码搜索:hunt

找到约 624 项符合「hunt」的源代码

代码结果 624
www.eeworm.com/read/414769/11102000

for hunt.for

SUBROUTINE hunt(xx,n,x,jlo) INTEGER jlo,n REAL x,xx(n) INTEGER inc,jhi,jm LOGICAL ascnd ascnd=xx(n).ge.xx(1) if(jlo.le.0.or.jlo.gt.n)then jlo=0
www.eeworm.com/read/391726/8387478

txt hunt.txt

procedure HUNT(XX:array of real; N:integer; X:real; var JLO:integer); label 1,2,3; var ASCND:boolean; LHI,INC,JM:integer; begin ASCND:=XX[N] > XX[1]; If (JLO N) Then
www.eeworm.com/read/192256/8394385

txt hunt.txt

procedure HUNT(XX:array of real; N:integer; X:real; var JLO:integer); label 1,2,3; var ASCND:boolean; LHI,INC,JM:integer; begin ASCND:=XX[N] > XX[1]; If (JLO N) Then
www.eeworm.com/read/291235/8433336

cpp hunt.cpp

#include "nr.h" void NR::hunt(Vec_I_DP &xx, const DP x, int &jlo) { int jm,jhi,inc; bool ascnd; int n=xx.size(); ascnd=(xx[n-1] >= xx[0]); if (jlo < 0 || jlo > n-1) { jlo=-1; jhi
www.eeworm.com/read/431754/8655905

cpp hunt.cpp

void hunt(double xx[], int n,double x, int& jlo) { int lhi,inc,jm; int ascnd = xx[n] > xx[1]; if( (jlo n)) { jlo = 0; lhi = n + 1; goto loop3;
www.eeworm.com/read/387489/8673020

txt hunt.txt

procedure HUNT(XX:array of real; N:integer; X:real; var JLO:integer); label 1,2,3; var ASCND:boolean; LHI,INC,JM:integer; begin ASCND:=XX[N] > XX[1]; If (JLO N) Then
www.eeworm.com/read/378323/9237127

png hunt.png

www.eeworm.com/read/378323/9237156

png hunt.png

www.eeworm.com/read/372592/9501253

txt hunt.txt

Sub HUNT(XX(), N, X, JLO%) ASCND = XX(N) > XX(1) If JLO% N Then JLO% = 0 LHI% = N + 1 GoTo 3 End If INC% = 1 If X >= XX(JLO%) Eqv ASC
www.eeworm.com/read/278154/10562770

c hunt.c

void hunt(float xx[], unsigned long n, float x, unsigned long *jlo) { unsigned long jm,jhi,inc; int ascnd; ascnd=(xx[n] >= xx[1]); if (*jlo n) { *jlo=0; jhi=n+1; } el