代码搜索:minimum
找到约 5,594 项符合「minimum」的源代码
代码结果 5,594
www.eeworm.com/read/486418/6532299
c auxiliary.c
/* Some utility functions (not part of the algorithm) */
# include
# include
# include
# include "global.h"
# include "rand.h"
/* Function to return the maximum of two
www.eeworm.com/read/485122/6564973
cpp d11r6.cpp
#include "iostream.h"
#include "math.h"
double func2(double x[], int n)
{
return 0.5 - bessj0(pow((x[1] - 1.0) , 2) +
pow((x[2] - 2.0), 2) + pow((x[3] - 3.0) , 2));
}
double func(d
www.eeworm.com/read/484959/6569557
cpp~ lap.cpp~
/* Linear Assignment Problem solver for Matlab
Flow code from http://www.magiclogic.com/assignment.html, copyright
Roy Jonker. Several files were compiled into one .cpp file. The
copyrig
www.eeworm.com/read/484959/6569558
cpp lap.cpp
/* Linear Assignment Problem solver for Matlab
Flow code from http://www.magiclogic.com/assignment.html, copyright
Roy Jonker. Several files were compiled into one .cpp file. The
copyrig
www.eeworm.com/read/484221/6582092
c q591.c
/* Q591 Box of Bricks: by yatsen*/
#include
main()
{ int a[50],i,avg,move,s,n,Set=1;
while (1)
{
scanf("%d",&n);
if (n==0) break;
for (i=0;i
www.eeworm.com/read/263399/11364545
cpp c9-14.cpp
#include
using namespace std;
template
class Compare
{public:
Compare(numtype a,numtype b)
{x=a;y=b;}
numtype max()
{return (x>y)?x:y;}
numtype min
www.eeworm.com/read/407557/11415918
java multiarraytest.java
package sample;
public class MultiArrayTest {
public static void main(String args[]) {
int[][] mXnArray = {
{16, 7, 12},
{9, 20, 18},
{14, 11, 5},
www.eeworm.com/read/406664/11437816
cpp template.cpp
// Section 10.1
// $ CC template.cpp
/*
minimum of 10 and 20 is: 10
minimum of 10.3 and 20.6 is: 10.3
*/
#include
using std::cout;
using std::endl;
template
www.eeworm.com/read/404684/11480133
cpp d11r6.cpp
#include "iostream.h"
#include "math.h"
double func2(double x[], int n)
{
return 0.5 - bessj0(pow((x[1] - 1.0) , 2) +
pow((x[2] - 2.0), 2) + pow((x[3] - 3.0) , 2));
}
double func(d
www.eeworm.com/read/401557/11556156
cpp c9-14.cpp
#include
using namespace std;
template
class Compare
{public:
Compare(numtype a,numtype b)
{x=a;y=b;}
numtype max()
{return (x>y)?x:y;}
numtype min