代码搜索:Num
找到约 10,000 项符合「Num」的源代码
代码结果 10,000
www.eeworm.com/read/455594/7369738
txt 最优二叉查找树 动态规划法.txt
#include
#include
#include
using namespace std;
//最优二叉查找树 动态规划法
/*
输入:
4
0.1 0.2 0.4 0.3
输出:
1.7
*/
#define INFI 10000
double c[10][10];
double p[1
www.eeworm.com/read/455594/7369742
txt noj 1056 彩色石头 动态规划.txt
#include
#include
#include
#include
using namespace std;
//NOj 1056 彩色石头 动态规划
/*
输入:
10 3
2 1 2 2 1 1 3 1 3 3
0 0
输出:
2
提示:
将第2位置的1,以及倒数第3
www.eeworm.com/read/455594/7369747
txt 球和盒子的组合问题 动态规划式.txt
#include
#include
#include
#include
#include
using namespace std;
//球和盒子的组合问题 Push Button Lock
//浙大ACM 2775
#define MAX 13
long c[MAX][MAX];
www.eeworm.com/read/455594/7369748
txt 尽可能多花钱 浙大2780.txt
#include
#include
#include
using namespace std;
#define VMAX 32
#define MMAX 1002
long long f[VMAX][MMAX]={0};
int a[VMAX];
void init()
{
int i,j;
f
www.eeworm.com/read/455594/7369752
txt pku 2479 最大连续串和.txt
#include
#include
#include
#include
#include
#include
using namespace std;
#define PB push_back
//PKU 2479 最大连续串和
#define NMAX
www.eeworm.com/read/455321/7373428
bas addr.bas
Attribute VB_Name = "Module1"
Public Type Addr
Name As String * 4 '姓名
Sex As Boolean '性别
Birthday As Date '生日
City As String * 20 '所在城市
www.eeworm.com/read/455214/7375838
c insert.c
#include
#include"def.h"
struct student *insert(struct student * head, struct student * stud)
{
struct student *p0,*p1,*p2;
p1=head;
p0=stud;
if(head==NULL)
{head=p0;p0->next=NU
www.eeworm.com/read/454980/7380673
c infomanager.c
/* Note:Your choice is C IDE */
#include
#include
#include
#include
#define N 100
struct student
{
char num[10];
char name[10];
char tel[11]
www.eeworm.com/read/454641/7386244
java gameworld.java
package bluetoochgame;
import javax.microedition.lcdui.*;
/**
* Title:
* Description:
* Copyright: Copyright (c) 2005
* Company:
* @author not attributab
www.eeworm.com/read/454637/7386264
m greymodel.m
function []=greymodel(y)
% 本程序主要用来计算根据灰色理论建立的模型的预测值。
% 应用的数学模型是 GM(1,1)。
% 原始数据的处理方法是一次累加法。
%y=input('请输入数据 ');
n=length(y);
yy=ones(n,1);
yy(1)=y(1);
for i=2:n
yy(i)=yy(i-1)+y(i);
end