-
文件分割器源码,将各种大文件方便的分割成1.4M大小的小文件,以便分盘携带。复制到目标机器后,再用它将多个小文件合并既可使用,
文件分割器源码,将各种大文件方便的分割成1.4M大小的小文件,以便分盘携带。复制到目标机器后,再用它将多个小文件合并既可使用,- Document division source code, each kind of big document
convenience division 1.4M size small document, in order to a minute
plate carries. After duplicates the goal machine, then will use it
many small documents merge already to be possible to use,
- 2022-01-26 14:50:15下载
- 积分:1
-
IOCP反弹连接
此源码是一个windows下的反弹连接例子,用windows iocp简单实现了客户端上线功能.可以参考修改
- 2022-01-23 10:40:46下载
- 积分:1
-
主题模型,相关主题模型,correlated topic model
主题模型,相关主题模型,correlated topic model -correlated topic model C implementation linux
- 2022-06-21 16:09:46下载
- 积分:1
-
JSP学生信息管理系统毕业设计包含源代码和论文及PPt
基于JSP的学生信息管理系统,开发平台MyEClipse数据库sqlserver 2000 ,该程序包含学生,教师,管理员三个功能模块,学生可以选课,登录,查询,还有个人信息,教师可以选择学生,公布分数,等管理员可以管理学生,和教师,进行怎删改查等操作
- 2022-03-25 12:39:12下载
- 积分:1
-
Intel386™ CXSA
EMBEDDED MICROPROCESSOR
datasheet
Intel386™ CXSA
EMBEDDED MICROPROCESSOR
datasheet-Intel386™ CXSA
EMBEDDED MICROPROCESSOR
datasheet
- 2023-08-30 00:50:03下载
- 积分:1
-
that a company has a customer reception center, the unit time to a random custom...
说某公司有一个顾客接待站,在单位时间内随机地有顾客到接待站询问,设每位顾客 的接待时间是某个范围内的随机值,设接待站只有一名接待人员,要求程序模拟统计 //在设定时间内,接待员的总空闲时间和顾客的平均等待时间。假定模拟数据已按顾客 //到达接待站的先后顺序依次存于某个正文数据文件中。对应每位顾客有两个数据,到达 ///时间和需要接待的时间。 //在计算机模拟程序中,程序按模拟环境中的事件出现顺序逐一处理事件。当一个事件 //结束时,下一个事件隔一段时间才发生,则程序中的模拟时钟立即推进到下一个事件 的发生时间,如一个事件还未处理结束之前,另有其他事件等待处理,则这些事件就 应依次排队等候处理。-that a company has a customer reception center, the unit time to a random customers to ask reception centers set up for each customer reception time is within the scope of a random value, is only a reception center set up to receive, process simulation requirements statistics// within a set time, the receptionist at the total idle between customers and the average waiting time. Simulated data has been assumed by the customer// Reception Center arrived in the order followed by the text stored in a data file. Corresponding two per customer data, arriving///time and the time required to receive.// In the computer simulation program, the process by simulation environment incidents each sequence
- 2022-01-30 22:04:42下载
- 积分:1
-
这个小程序是钟表小程序,使用了Timer控件使用,从中可以了解如何使用它,以及如何改变控件属性等。...
这个小程序是钟表小程序,使用了Timer控件使用,从中可以了解如何使用它,以及如何改变控件属性等。-about clock ,it uses the timer control
- 2022-01-26 04:50:48下载
- 积分:1
-
查看内存泄漏的类,使用方法: 把两个文件添加到工程里,在需要做检测的文件里加上#include "MemoryMgr.h"
如果是使用MFC的程序删掉#de...
查看内存泄漏的类,使用方法: 把两个文件添加到工程里,在需要做检测的文件里加上#include "MemoryMgr.h"
如果是使用MFC的程序删掉#define new DEBUG_NEW一行,在MemoryMgr.cpp里最上边加上#include "stdafx.h"就可以了。结果会保存在MemoryLeakLog.txt里-See the class memory leaks, use the method: the two files added to the project, the testing needs to be done in the document together with the# include " MemoryMgr.h" If the procedure is to use the MFC deleted# define new DEBUG_NEW line, MemoryMgr. cpp with the most top# include " stdafx.h" on it. Results will be stored in MemoryLeakLog.txt Lane
- 2022-03-25 17:15:42下载
- 积分:1
-
这是一个用来打勾的listview(最适用于权限设置)
这是一个用来打勾的listview(最适用于权限设置)-this is the listview used for checkist( the best one for permission setting)
- 2022-08-26 00:02:36下载
- 积分:1
-
Description:
对整型有序关键码序列进行折半查找,待排序序列以数组存储。如果找到待查记录,返回找到的位置下标,并删除该关键码记录;如果没找到待查记...
Description:
对整型有序关键码序列进行折半查找,待排序序列以数组存储。如果找到待查记录,返回找到的位置下标,并删除该关键码记录;如果没找到待查记录,返回0,并将待查记录插入到适当位置,即该查找属于动态查找。输出查找过程中每一轮的low,mid,high 值,以及与给定值相比较的关键码值,并输出最后找到的位置,及变化后的数组。
注意:该数组为整型,数组中关键码存储位置为r[1]~r[n],r[0]留作它用,且关键码个数大于4.
Input Format:
第一行输入数组中记录个数n
第二行输入n个有序的整型关键码,以空格隔开
接下来输入三个待查关键码,每个关键码占一行
Output format:
对于每个关键码,分别输出:
找到给定值之前的每一轮的low,mid,high及相比较的待查找序列中的关键码,以空格隔开
接下来一行输出查找到的位置
接下来一行输出变化后的待查找序列
-Description:
The key codes for integers ordered sequence of binary search until the sorting sequence to an array of storage. If you find a complete set of records, returns to find the location of the next standard, and delete the key code is recorded if not find a complete set of records, returns 0, and a complete set of records inserted into the appropriate location, that is, the search was part of search. Find out the process for each one of the low, mid, high value, as well as compared to the value given the key code value and output of the last to find the locat
- 2023-05-15 19:40:03下载
- 积分:1