资源列表
jifen124
- 龙格---库塔方法是求解微分方程比较常用的方法,在理解数学上是怎么一回事后,编制这个程是相当容易的,就是个迭代的过程.步长的选取也是很有讲究的,过小的步长反而会导致误差累积过大. 相关的理论请参考相关的数值算法的书籍,我这里只给出关键的函数及主程序段,其余相关的细节就不再一一罗列了.-Runge - Kutta method to solve the differential equation is more commonly used method, in understanding h
wangtongbohao
- 学习E语言,看看其他的编程方法,这是我自己找到的有关拨号程序的源代码,自己想做一个啊,为了自己的工作-learning language, look at other programming method, which is found myself in the dial-up program's source code, they want an ah, to their own work
CSprite
- 写游戏用到的精灵通用类,使用比较方面,主要用于做动画
yinhangjia
- 通过用c++语言来实现银行家算法,同时也注重到如何防止死锁的发生-By using c++ language to achieve the banker' s algorithm, but also pay attention to how to prevent the occurrence of deadlock
mydemosite
- 让我来教你如何用vs2005新建一个站点这个源码说明了如何新建一个网站-I teach you how to create a new web project
gerensuodeshui
- 一个计算个人所得税的程序,输入个人所得 得出所得税-A calculation of personal income tax program, enter the income tax personal income derived
YJGD
- 液晶程序,汇编,嵌入式可用-LCD, assembler, embedded available -LCD, assembler, embedded available
vbtaiji
- 画太极八卦图的VB源码,实现在窗口上画一个不断旋转的太极图,创建刷子(参数:颜色值)返回值:刷子句柄,传递设备(参数:图片句柄,设备句柄)返回值:传递后ID,删除设备(参数:设备句柄)返回值:成功或失败信息[删除前需要把设备从图片中传出(用传递后ID重新传一次即可)],用刷子涂色(参数:图片句柄,坐标X,坐标Y,边界颜色)返回值:成功或失败信息-Tai Chi Bagua map drawn VB source, painted on the window to achieve a consta
DTMNodeIterator
- DTMNodeIterator gives us an implementation of the DTMNodeIterator which returns DOM nodes.
ACATSP
- 旅行商问题,常被称为旅行推销员问题,是指一名推销员要拜访多个地点时,如何找到在拜访每个地点一次后再回到起点的最短路径。规则虽然简单,但在地点数目增多后求解却极为复杂-Salesman problem, often referred to as the traveling salesman problem, refers to a salesman when you want to visit multiple locations, how to find the time to visit ea
ta6932
- 单片机是新塘M0系列,数码管驱动是TA6932,4位7段数码管,可以实现显示,文件包含源代码和头文件-MCU is Nuvoton M0 series, digital tube driver is TA6932, four seven segment digital tube, can realize, according to the file contains the source code and header files
mem101
- 模拟编译系统的内存分配与释放的,实现一些简单的操作。首先用一个静态数组模拟内存空间(buf),当调用申请内存操作时,将从数组空间(buf)返回给调用者一定的空间,当调用释放内存的时候,将将指定部分的内存标记为未用。