This present a primer for people who are unfamiliar with the Java language. This INTroduction is INTended to allow you to develop the Java skills necessary to understand basic programs.
标签: This INTroduction unfamiliar language
上传时间: 2014-01-19
上传用户:Miyuki
用SHA算法实现对任意文件的hash摘要,并且把hash摘要值(至少为160bit)存入另一个文件,形如: hash inputfile hashvaluefile 说明:SHA算法的实现至少为160bit,或者可以选择256,384或者512的,可以查阅相关资料,按照标准来实现(hash的算法是否正确,可以和网上的标准算法对比,用相同的输入看是否能够得到相同的输出)控制台编程: INT main(INT argc, char *argv[ ])
上传时间: 2017-07-11
上传用户:cursor
I. C. Wong, Z. Shen, J. G. Andrews, and B. L. Evans, ``A Low Complexity Algorithm for Proportional Resource Allocation in OFDMA Systems , Proc. IEEE INT. Work. Signal Processing Systems, 针对这篇文章给出的源代码
上传时间: 2014-01-24
上传用户:zhichenglu
java 线程 静态锁,对象锁, synchronized 是锁方法还是锁对象?还是锁类?如何实现?? 部分代码如下, public static Object lock=new Object() //静态锁,锁类,不是锁对象了!!所以两个线程同时 运行两个 TestThread 的execute( ),也可以同步!!! public void execute(){ // synchronized(lock){ for(INT i=0 i<20 i++){ try { Thread.sleep(30) } catch (INTerruptedException e) { // TODO Auto-generated catch block e.prINTStackTrace() } System.out.prINTln(Thread.currentThread().getName()+Thread.currentThread ().getName()+" "+i) } } }
上传时间: 2017-07-15
上传用户:lijianyu172
client socket include <sys/types.h> include <sys/socket.h> include <stdio.h> include <netinet/in.h> include <arpa/inet.h> include <unistd.h> INT main() { INT sockfd INT len struct sockaddr_in address INT result char ch = A sockfd = socket(AF_INET, SOCK_STREAM, 0) address.sin_family = AF_INET address.sin_addr.s_addr = inet_addr("127.0.0.1") address.sin_port = 9734 len = sizeof(address) result = connect(sockfd, (struct sockaddr *)&address, len) if(result == -1) { perror("oops: client") exit(1) } write(sockfd, &ch, 1) read(sockfd, &ch, 1) prINTf("char from server = c\n", ch) close(sockfd) exit(0) }
上传时间: 2017-07-29
上传用户:wab1981
设计一个造成矩阵类Matrix,包含一个元素类型为INT的二维数组,分别设计一个静态方法和实例方法把矩阵转置,分别设计静态方法和实例方法实现二个矩阵相加、相乘。重写方法toString(),使其能输出此矩阵。
上传时间: 2013-12-24
上传用户:wyc199288
对于hook,从ring3有很多,ring3到ring0也有很多,根据api调用环节递进的顺序,在每一个环节都有hook的机会,可以有INT 2e或者sysenter hook,ssdt hook,inline hook ,irp hook,object hook,idt hook等等
标签: hook
上传时间: 2013-12-28
上传用户:ggwz258
员工管理系统 在一个公司里员工之间都有工作上的联系。对方的联系方式,部门这些资料的获取;或是上级对员工资料的更改,工资的调整,员工对资料的查看,修改。 5.1.1 功能描述 1:管理员能对员工资料进行添加,删除,修改操作。普通用户不能进行添加或删除操作 2:界面要求使用简便,操作简单 3:信息要做到保密,不同权限的用户操作不同,看到的信息也不一样 4:对不同的工资段进行高亮标记 §5.2 设计思想 根据不同用户的行为来实现不同的操作 §5.2.1 系统构思 不同用户返回不同的操作,具有不同的权限 §5.2.2 关键技术与算法 修改界面与表格的同步更新,直接双击表格修改数据 §5.2.3关键数据结构 以下是员工的数据 workerID INT IDENTITY(1,1) , name varchar (20) NULL, sex varchar (10) NULL, age INT NULL, position varchar (20) NULL, cellphone varchar (20) NULL, salary INT NULL, userl varchar (20) NOT NULL, userp varchar (20) NOT NULL, classify INT NOT NULL
上传时间: 2017-08-25
上传用户:三人用菜
Calculates if the brackets in a sentence are correctly close. Input consists, one per line, sentences with brackets, and output say YES if its correctly close, or NO INT if its not saying where is the error. Input: ()[]<>(**) (*) (ASA Output: YES NO 2 NO 4
标签: Calculates correctly brackets consists
上传时间: 2013-12-13
上传用户:aig85
输入数组作为sort的参数调用sort 即可实现排序(不减序排列) //或者利用重载的方法,参数是(INT[] number, 0, number.length-1)
上传时间: 2017-08-30
上传用户:LIKE