代码搜索:minimum
找到约 5,594 项符合「minimum」的源代码
代码结果 5,594
www.eeworm.com/read/470720/1451595
c 20000502-1.c
static int minimum(int a, int b)
{
if(a < b)
return a;
else
return b;
}
static int a, b;
static inline int foo(void)
{
a = minimum (a, b);
return 0;
}
static int bar(void)
{
return foo();
}
www.eeworm.com/read/470693/1463541
c 20000502-1.c
static int minimum(int a, int b)
{
if(a < b)
return a;
else
return b;
}
static int a, b;
static inline int foo(void)
{
a = minimum (a, b);
return 0;
}
static int bar(void)
{
return foo();
}
www.eeworm.com/read/240162/4589463
c 20000502-1.c
static int minimum(int a, int b)
{
if(a < b)
return a;
else
return b;
}
static int a, b;
static inline int foo(void)
{
a = minimum (a, b);
return 0;
}
static int bar(void)
{
return foo();
}
www.eeworm.com/read/233448/4683557
c 20000502-1.c
static int minimum(int a, int b)
{
if(a < b)
return a;
else
return b;
}
static int a, b;
static inline int foo(void)
{
a = minimum (a, b);
return 0;
}
static int bar(void)
{
return foo();
}
www.eeworm.com/read/210208/4951531
java picostmatrix.java
/**
* The Minimum1TreeCost function returns the cost of a minimum 1-tree.
*
* @ Author Create/Modi Note
* Xiaofeng Xie May 21, 2005
* Xiaofeng Xie Apr 28, 2006 MAOS-TSP B
www.eeworm.com/read/190666/5179262
c 20000502-1.c
static int minimum(int a, int b)
{
if(a < b)
return a;
else
return b;
}
static int a, b;
static inline int foo(void)
{
a = minimum (a, b);
return 0;
}
static int bar(void)
{
return foo();
}
www.eeworm.com/read/340665/3280057
c 20000502-1.c
static int minimum(int a, int b)
{
if(a < b)
return a;
else
return b;
}
static int a, b;
static inline int foo(void)
{
a = minimum (a, b);
return 0;
}
static int bar(void)
{
return foo();
}
www.eeworm.com/read/440906/1781699
c 20000502-1.c
static int minimum(int a, int b)
{
if(a < b)
return a;
else
return b;
}
static int a, b;
static inline int foo(void)
{
a = minimum (a, b);
return 0;
}
static int bar(void)
{
return foo();
}
www.eeworm.com/read/420803/2061502
h distance.h
#ifndef DISTANCE_H
#define DISTANCE_H
class EditDistance {
private:
ints d;
/*Gets the minimum of three values */
static inline int minimum( const int a, const int b, const int c )
www.eeworm.com/read/366702/2880133
c 20000502-1.c
static int minimum(int a, int b)
{
if(a < b)
return a;
else
return b;
}
static int a, b;
static inline int foo(void)
{
a = minimum (a, b);
return 0;
}
static int bar(void)
{
return foo();
}