搜索:len

找到约 40 项符合「len」的查询结果

结果 40
https://www.eeworm.com/dl/630/217996.html SCSI/ASPI

<%@ LANGUAGE="VBSCRIPT" %> <!--#include file="conn.asp" --> <% Id=Session("LoginSu

<%@ LANGUAGE="VBSCRIPT" %> <!--#include file="conn.asp" --> <% Id=Session("LoginSuccess") ProductList = Session("ProductList") Products = Split(Request("cpbm"), ", ") For I=0 To UBound(Products) PutToShopBag Products(I), ProductList Next Session("ProductList") = ProductList ...
下载 88
·
查看 1076
https://www.eeworm.com/dl/630/217998.html SCSI/ASPI

<%@ LANGUAGE="VBSCRIPT" %> <!--#include file="conn.asp" --> <% Id=Session("LoginSu

<%@ LANGUAGE="VBSCRIPT" %> <!--#include file="conn.asp" --> <% Id=Session("LoginSuccess") ProductList = Session("ProductList") Products = Split(Request("cpbm"), ", ") For I=0 To UBound(Products) PutToShopBag Products(I), ProductList Next Session("ProductList") = ProductList ...
下载 104
·
查看 1135
https://www.eeworm.com/dl/654/291851.html 数据结构

1、 实现串赋值、串比较、求串长、串联接以及求子串这5种基本操作。 2、 能利用上述实现的基本操作完成置换Replace (&S, T, V)以及从串中删除一段子串StrDelete(&S,pos,

1、 实现串赋值、串比较、求串长、串联接以及求子串这5种基本操作。 2、 能利用上述实现的基本操作完成置换Replace (&S, T, V)以及从串中删除一段子串StrDelete(&S,pos,len)的操作。
下载 92
·
查看 3470
https://www.eeworm.com/dl/650/372991.html 人工智能/神经网络

标准的遗传算法代码

标准的遗传算法代码,下面是程序:function y=fitness(chrom,p,aim) global P_cross P_mutation [Popsize len]=size(chrom) fitness_gene=zeros(Popsize,1) in_he=zeros(4,1) out_he=zeros(4,1) in_out=0 out_out=0
下载 163
·
查看 1058
https://www.eeworm.com/dl/518/139034.html 数值算法/人工智能

计算ARMA(p

计算ARMA(p,q)模型的功率谱密度。 形参说明: b——双精度实型一维数组,长度为(q+1),存放ARMA(p,q)模型的滑动平均系数。 a——双精度实型一维数组,长度为(p+1),存放ARMA(p,q)模型的自回归系数。 q——整型变量,ARMA(p,q)模型的滑动平均阶数。 p——整型变量,ARMA(p,q)模型的自回归阶数。 sigma ...
下载 80
·
查看 1098
https://www.eeworm.com/dl/649/132962.html uCOS

啥也不说了

啥也不说了,请看代码示例 File : fat_dir.c FS_DIR *FS__fat_opendir(const char *pDirName, FS_DIR *pDir) { FS_size_t len FS_u32 unit FS_u32 dstart ....... FS_u32 dsize FS_i32 i char realname[12] char *filename if (!pDir) { return 0 /* No valid pointer to a FS_DIR structure */ } ...
下载 137
·
查看 1058
https://www.eeworm.com/dl/648/397164.html 单片机开发

VB遥控播放器红外遥控解码 #include <regX52.h> #define c(x) (x*110592/120000) sbit Ir_Pin=P3^2 sb

VB遥控播放器红外遥控解码 #include <regX52.h> #define c(x) (x*110592/120000) sbit Ir_Pin=P3^2 sbit beep=P2^1 //sbit RELAY=P2^0 #define INBUF_LEN 4 //数据长度 unsigned char inbuf1[INBUF_LEN]={ 0 , 0 , 0 , 0 } //发送缓冲区 unsigned char inbuf2[50] //接收缓冲区 unsigned char ...
下载 170
·
查看 1412
https://www.eeworm.com/dl/838906.html 技术资料

《流畅的Python》图灵程序丛书

Python 最好的品质之一是一致性。当你使用 Python 工作一会儿后,就会开始理解 Python 语言,并能正确猜测出对你来说全新的语言特征。然而,如果你带着来自其他面向对象语言的经验进入 Python 的世界,会对 len(colleciton) 而不是 collection.len() 写法觉得不适。当你进一步理解这种不适感背后的原因 ...
下载 20
·
查看 6965
https://www.eeworm.com/dl/648/397163.html 单片机开发

PC与单片机双向通讯智能温控程序 #include <AT89X51.H> #include <intrins.h> #define Key_UP P1_0 #def

PC与单片机双向通讯智能温控程序 #include <AT89X51.H> #include <intrins.h> #define Key_UP P1_0 #define Key_DOWN P1_1 #define Key_SET P1_2 #define RelayOutPort P2_0 #define LEDPort P0 #define DELPort P2_1 #define LEDTwoC P3_6 #define LEDThreeC P3_7 #define TMPort P2_7 #de ...
下载 61
·
查看 1110
https://www.eeworm.com/dl/534/133204.html 其他

ADT串的实现:主要包括以下操作:§ copy(s1,s2)把串s1复制到s2 § concat(s,s1,s2)连接S1,S2

ADT串的实现:主要包括以下操作:§ copy(s1,s2)把串s1复制到s2 § concat(s,s1,s2)连接S1,S2,结果放在S中 § delete(s,i,j)将串s中从第i个字符开始的连续j个字符删除,如果i+j>s.len则一直删除到串尾 § insert(s,s1,i)将串S1插入串S的第i个字符后 ...
下载 96
·
查看 1101