代码搜索:while
找到约 10,000 项符合「while」的源代码
代码结果 10,000
www.eeworm.com/read/397357/8054650
cpp 半数集.cpp
#include
int a[1000],aj;
void get(int n)
{
int i,j,k;
for(i=aj+1; i
www.eeworm.com/read/297039/8058057
m instfreq.m
function [fnormhat,t]=instfreq(x,t,L,trace);
%INSTFREQ Instantaneous frequency estimation.
% [FNORMHAT,T]=INSTFREQ(X,T,L,TRACE) computes the instantaneous
% frequency of the analytic signal X at time
www.eeworm.com/read/297034/8059059
m instfreq.m
function [fnormhat,t]=instfreq(x,t,L,trace);
%INSTFREQ Instantaneous frequency estimation.
% [FNORMHAT,T]=INSTFREQ(X,T,L,TRACE) computes the instantaneous
% frequency of the analytic signal X at time
www.eeworm.com/read/397197/8062523
h emot.h
/*****************************************
// For: CC1110 in PS
// emot.h
// 2008年1月30日 emot
*****************************************/
#ifndef EMOT_H
#define EMOT_H
#in
www.eeworm.com/read/397176/8063990
c ircom.c
/* 晶振:11.0569MHz */
#include
#define uchar unsigned char
uchar data IRcode[4]; //定义一个4字节的数组用来存储代码
uchar CodeTemp; //编码字节缓存变量
uchar i,j,k; //延时用的循环
www.eeworm.com/read/196733/8064246
c 1.c
#include
char dsp[]={0xC0,0xF9,0xA4,0xB0,0x99,0x92,0x82,0xF8,0x80,0x90};
char bs[]={0x01,0x02};
char bitd[2];
void reflash(unsigned char c)
{
char i,j;
char k;
bitd[1]=c/10;
www.eeworm.com/read/196622/8072151
m mutation_4.m
%mutation_4.m
%变异策略4
function cnew=mutation_4(c0,n)
j1=ceil(n*rand);
j2=ceil(n*rand);
j3=min(j1,j2);
j4=max(j1,j2);
cnew=c0;
if j4>j3
k=1;
while k
www.eeworm.com/read/296590/8090789
c 内部排序算法比较.c
#include "stdio.h"
#include "stdlib.h"
#include "conio.h"
#define N 100 /*设置被测数据的个数*/
static long int c=0; /*记录关键字比较次数*/
static long int s=0;