代码搜索:盒维数
找到约 10,000 项符合「盒维数」的源代码
代码结果 10,000
www.eeworm.com/read/325670/13191475
cpp 银行家算法.cpp
#include "string.h"
#include "iostream.h"
#define M 5 //总进程数
#define N 3 //总资源数
#define FALSE 0
#define TRUE 1
int MAX[M][N]={{7,5,3},{3,2,2},{9,0,2},{2,2,2},{4,3,3}};
i
www.eeworm.com/read/313403/13588704
m test03_20_2.m
function Test03_20_2
clc;
num=input('现在我们要求某个自然数范围内的所有素数,请先输入一个自然数:');
X=2:num;
fprintf(1,'开始计算...');
XX=X(1);
while 1
tmp=X(1);
if tmp>floor(num/2)
www.eeworm.com/read/310920/13640692
cpp 银行家算法.cpp
#include "string.h"
#include "iostream.h"
#define M 5 //总进程数
#define N 3 //总资源数
#define FALSE 0
#define TRUE 1
int MAX[M][N]={{7,5,3},{3,2,2},{9,0,2},{2,2,2},{4,3,3}};
i
www.eeworm.com/read/488823/6486403
cpp getmidnumber.cpp
#include
using namespace std;
/*
A:待排序数组
left:A的左边界
right:A的右边界
pivot: 轴值
函数功能:将A中大于Pivot的数放到pivot的右边,比pivot小的数放到pivot的左边
*/
int partition(int A[], int left, int right, int pivot)
www.eeworm.com/read/485140/6565606
java checkboxexam.java
package ch7;
import java.awt.*;
public class CheckBoxExam extends Frame
{
String [] option1={"高数Ⅰ","高数Ⅱ","大学物理","线形代数","英语","俄语"};
String [] option2={"毛泽东思想概论","邓小平理论","中国革命史"};
Label l1=
www.eeworm.com/read/485140/6565769
java checkboxexam.java
package ch7;
import java.awt.*;
public class CheckBoxExam extends Frame
{
String [] option1={"高数Ⅰ","高数Ⅱ","大学物理","线形代数","英语","俄语"};
String [] option2={"毛泽东思想概论","邓小平理论","中国革命史"};
Label l1=
www.eeworm.com/read/480189/6667762
sql matchrecord.sql
/*
//小组赛记录表(组别,球队1,球队2,场次,比赛时间,队1进球数,队2进球数)
//创建赛程安排及战况记录表
CREATE TABLE MatchRecord
(
group1 nchar(10),
team1 nchar(20) NOT NULL,
team2 nchar(20) NOT NULL,
www.eeworm.com/read/479276/6690767
txt spider.txt
import java.util.Vector;
/**
*线程池的方法使得在线程密集的情况下原有线程得到重用
*从而提高性能
*@since 0.6
*/
public class ThreadPool implements Runnable{
//ThreadPool里最大线程数、最少线程数、释放延时的确省值
public fin
www.eeworm.com/read/478816/6703782
java random.java
/*作者:徐朝*/
/*keystonexu@yahoo.com.cn*/
package kernel;
/**
* 一个随机数发生器,按随机数种子返回一个0-n-1之间的随机数
* */
class Random extends java.util.Random
{
public Random(int seed)
{
super(seed);
}
pub
www.eeworm.com/read/404838/11477306
txt 频繁2-项集及数量关系.txt
//用数组的方式,结合数学期望,来考虑数量问题
#include
#include
#define item_num 5 //商品item的种类数
#define cus_num 9 //顾客customer的记录数
#define minsup 2 //最小支持度计数
void mai