资源列表
VB.net 生成条形码并打印附源程序
- VB.net 使用控件生成条形码并支持打印的源程序,区别于vb6.0的打印方法(VB.net Generate bar code and print attached source program)
带微分器的积分反演
- 在积分反演法的基础上增加了微分器,实现了对扫频信号的位置跟踪。(On the basis of integral inversion method, a differentiator is added to realize the position tracking of swept frequency signal.)
huizong
- 汽车电动助力转向仿真,适合新手练习学习,(Electric power steering simulation)
DefenderControl
- VMProtect 1.xx - 2.xx Ultra Unpacker v1.0 .........................................\ARImpRec.dll,205312,2012-12-10 .........................................\Me to you.txt,9713,2012-12-26 .........................................\Short scr ipt Descr i
混沌算法
- 混沌算法,新手适用,有注释,有教程,值得选择,快来下载吧(Chaos algorithm, novice application, there are notes, there are tutorials, it is worth choosing, quickly download it)
不围棋
- 不围棋功能现,命令行界面,没有图形界面,但实现了对战等功能(No go function, command line interface, no graphical interface, but to achieve the war and other functions)
EMV Reader Writer.rar
- lol its an emv writer for emv chip cards
Queue
- 任务描述 栈和队列都提供 Push/Pop 两种操作,其中 Push:加入一个元素。Pop:弹出一个元素。给出一个线性结构的进出顺序,判定这个结构是栈还是队列。(40’) 输入描述 第一行输入一个整数s,代表有s组测试数据。 第一行输入一个整数 n,代表操作的次数。 输入 n 行,每行包含两个整数 type val。 当 type = 1时,表示该次操作为 push 操作,val 表示进入的数字。当 type=2 时,表示该次操作为 pop 操作,val 代表出来的数字。 输出描述 对每
Aspose.Words
- 这个可以生成WORD文件和EXCEL文件。(this function can generate WORD file and EXCEL file.)
新安江模型
- 新安江三水源模型程序代码,matlab编程(Xin'anjiang three water source model program code, matlab programming)
后台监控鼠标和键盘
- 后台监控鼠标和键盘(可监听全局的鼠标以及键盘按键)(Background monitoring mouse and keyboard (monitor global mouse and keyboard keys))
FIFO先进先出调度算法(含代码截图)
- 最简单的分页替换算法就是先进先出算法,当每次有新的分页需要调入时,会选择调入内存时间最久的分页换出。有两种实现的方法:第一种是记录每个分页被调入到页框的时间,当每次需要换出分页时,会找到调入时间最早的一页,也就是在主存储器中存在最久的分页。另外一种方式就是利用FIFO队列来实现,当要进行分页替换时,就把队列最前端的分页换出,再把要调入的分页放到队列的末端。(The simplest paging replacement algorithm is the first in first out al