代码搜索:while
找到约 10,000 项符合「while」的源代码
代码结果 10,000
www.eeworm.com/read/408622/11379133
m gcpgen1.m
function [u,i,j,df]=GCPgen(e,d,b,n,w,lamda)
u=1+fix(unifrnd(0,n));i=e(u);
while 1
j=1+fix(unifrnd(0,d+1));
if j~=i
break;
end
end
df=0;
for v=1:n
if e(v)==j
www.eeworm.com/read/262879/11387333
c xval-prep.c
/*************************************************************************/
/* */
/* Program to prepare data file for cross-validation */
/* ------------------------------------------------
www.eeworm.com/read/262856/11388005
txt 1002.txt
#include
void value(int Blank[][4],int Counter[][4],int n);
void bubble_sort(struct node Box[],int n);
void locate(struct node Box[],int blank[][4],int n);
struct node
{
int x
www.eeworm.com/read/262778/11391492
cpp bo4-3.cpp
// bo4-3.cpp 串采用块链存储结构(由c4-3.h定义)的基本操作(16个)
void InitString(LString &T)
{ // 初始化(产生空串)字符串T。另加
T.curlen=0;
T.head=NULL;
T.tail=NULL;
}
Status StrAssign(LString &T,char *chars)
www.eeworm.com/read/408344/11392145
c shell.c
#include
void main()
{
int data[11]={0,75,23,98,44,57,12,29,64,38,82};
int i,j,k,incr,temp;
printf("\n\n");
printf("\nNumber:");
for(i=1;i
www.eeworm.com/read/262592/11399153
bak buzz.c.bak
#include
/**********************************************************************
函数功能: 单位为1毫秒延迟函数
入口参数: wTime: 延迟wTime毫秒
出口参数: 无
*********************************************************
www.eeworm.com/read/262584/11399338
cpp main.cpp
#include
#include
#include
#include
#include
#include
#include
/////////////////////////////////////////////////
www.eeworm.com/read/262584/11399340
txt 学生选课系统(c++).txt
//////////////////main.cpp/////////////////////////////////////////
//头文件
#include
#include
#include
#include
#include
#include
www.eeworm.com/read/408098/11405109
cpp 数据结构设计1线性表长整数加法.cpp
#include
#include
#define OK 1
#define ERROR 0
#define OVER -1
typedef int ElemType;
typedef int Status;
typedef struct DuLNode{
ElemType data;
struct DuLNode *prior;