搜索结果

找到约 93 项符合 null 的查询结果

CA认证 DESProcess FILE *mfp,*cfp int ttch=0,xorRes,ttbitdiff=0 char mch,cch float bdiff=0 if

DESProcess FILE *mfp,*cfp int ttch=0,xorRes,ttbitdiff=0 char mch,cch float bdiff=0 if((mfp=fopen(mfile,"r"))==NULL) {cout<<"Cannot open the file to compare"<<endl } if((cfp=fopen(cfile,"r"))==NULL) {cout<<"Cannot open the file to compare"<<endl } else { while(!feof(mfp)&!feof(cfp)) ...
https://www.eeworm.com/dl/640/315676.html
下载: 92
查看: 1044

Java书籍 package query public class LinkQuery { private Node front private Node vear public Link

package query public class LinkQuery { private Node front private Node vear public LinkQuery() { this.front=null this.vear=null } public void add(int i) { Node newNode=new Node(i) if(vear==null && front==null) { vear=newNode front=newNode return } vear.next=ne ...
https://www.eeworm.com/dl/656/317846.html
下载: 24
查看: 1068

其他 内存的申请和分配并没有成功

内存的申请和分配并没有成功,但程序员却使用了它。一些新手经常会犯这种错误,他们并不会留意到内存没有分配成功。判断指针的值是否为NULL可以有效地避免这种错误。
https://www.eeworm.com/dl/534/321562.html
下载: 192
查看: 1033

SQL Server java 通用连接 MS SQL 的写法

java 通用连接 MS SQL 的写法 ,给新手用吧 DBconnect DBC DBC = new DBconnect() java.sql.Statement stmt = null if (DBC.connectDB()) {
https://www.eeworm.com/dl/689/322303.html
下载: 88
查看: 1018

软件设计/软件工程 printf(&quot 请输入%d个课程的代表值(<%d个字符): &quot ,(*G).vexnum,MAX_NAME) for(i=0 i<(*G).vexnum ++i)

printf(&quot 请输入%d个课程的代表值(<%d个字符):\n&quot ,(*G).vexnum,MAX_NAME) for(i=0 i<(*G).vexnum ++i) /* 构造顶点向量 */ { scanf(&quot %s&quot ,(*G).vertices[i].data) (*G).vertices[i].firstarc=NULL } printf(&quot 请输入%d个课程的学分值(<%d个字符):\n&quot ,(*G).vexnum,MAX_NAME) fo ...
https://www.eeworm.com/dl/684/333152.html
下载: 60
查看: 1222

数据结构 base64算法,前几天用来截获MSN协议时获取文件名时使用的。之前用的一个网上下下来的base64的源码

base64算法,前几天用来截获MSN协议时获取文件名时使用的。之前用的一个网上下下来的base64的源码,解码总是错误。后来干脆自己写了一个。由于MSN协议解出来的字符串是UNICODE的,所以那些base64转换器解码后显示不出有用信息,中间被截断(null字符)。 里面包含两个项目(一个库,一个测试程序) ...
https://www.eeworm.com/dl/654/338554.html
下载: 157
查看: 1029

Windows CE wince EVC 简单的图片浏览功能,自已随意扩展 支持 *.bmp *.jpg *.gif *.png 等等 // TODO: Add your control notification

wince EVC 简单的图片浏览功能,自已随意扩展 支持 *.bmp *.jpg *.gif *.png 等等 // TODO: Add your control notification handler code here CString defFilter("选中其中一个文件|*.bmp *.jpg *.gif *.png") CFileDialog dlg(TRUE,NULL,NULL,OFN_ALLOWMULTISELECT,defFilter) if(dlg.DoModal()==IDOK){ PathName=dl ...
https://www.eeworm.com/dl/674/345350.html
下载: 171
查看: 1113

Java编程 实现基本的购物车功能。 eclipse+sqlserver2005 1.主要强调了购物车的业务逻辑。 2

实现基本的购物车功能。 eclipse+sqlserver2005 1.主要强调了购物车的业务逻辑。 2,利用javabean封装。比较适合jsp初学者。 3.简洁实用。可以在此基础上开发更加复杂功能的购物网站。 数据库建立 create database shop_db go use shop_db go create table t_sp ( s_id int identity(1,1) primary key, s_name varchar(2 ...
https://www.eeworm.com/dl/633/367055.html
下载: 108
查看: 1199

matlab例程 This demo shows the BER performance of linear, decision feedback (DFE), and maximum likelihood seque

This demo shows the BER performance of linear, decision feedback (DFE), and maximum likelihood sequence estimation (MLSE) equalizers when operating in a static channel with a deep null. The MLSE equalizer is invoked first with perfect channel knowledge, then with an imperfect, although straightforwa ...
https://www.eeworm.com/dl/665/370242.html
下载: 42
查看: 1065

其他 /* 实现一个图类

/* 实现一个图类,通过增加结点关系而增加结点,通过创建新关系而覆盖旧关系 能在DOS窗口打印图结点列表和结点边列表 初始化的时候 结点表首指针置为NULL,在释放图对象的时候,析构函数实现释放结点和边结点 */
https://www.eeworm.com/dl/534/370291.html
下载: 198
查看: 1011