-
MFC
MFC教程,十分详细,适合初学,内附示例(a leading reference for learners on the way to MFC)
- 2010-11-08 14:11:02下载
- 积分:1
-
sanpack_rsa_vs2003sln
看到RSA加密的C++类下载的人不少,我也下载了,并且稍微改动了一下,使它看上去更加易懂。在新年随手写了一套RSA文件加密,用win32dll封装使用了这个类,用C#写了文件加密和操作界面,可以实现密钥的保存和对任何文件的RSA加密操作。送给大家祝大家新年快乐。(see RSA encryption C downloaded to many people, I have downloaded and slightly altered a bit it looks more comprehensible. New Year threw in a written document RSA encryption, win32dll Compliant with the use of this category, C# to write document encryption and interface, can achieve key to the preservation of any documents and the RSA encryption operation. Give you wish you a happy New Year.)
- 2006-09-25 23:18:10下载
- 积分:1
-
A
实现A*算法地图寻优路径问题,游戏地图采用网格地图。(Achieve A* algorithm maps the path optimization problem, the game map using a grid map.)
- 2013-10-22 15:52:11下载
- 积分:1
-
CANoe-Simulation
CANoe仿真的详细介绍,例程实用,用CAPL编程,面板设置(CANoe simulation of a detailed introduction, practical routines)
- 2015-12-24 11:02:06下载
- 积分:1
-
123
Crome ShortCut lollol
- 2015-05-19 23:15:49下载
- 积分:1
-
跨平台 AES 加密在 android、 java 和 C#
跨平台 AES 加密是基于高级加密标准加密项目。这个项目有助于对其平台无关的任何文件进行加密,无论是在 java,android 或 c#。相同的加密过程将工作和隐窝深度的数据或文件
- 2022-03-12 10:11:00下载
- 积分:1
-
Matlab
《MATLAB7.0从入门到精通》全书源码,包括使用说明。(MATLAB7.0 From Novice to Professional book source code, including instructions for use.)
- 2010-09-16 16:43:34下载
- 积分:1
-
pcf8591
pcf8591原理图(adda转换模块开发)(pcf8591 Schematic (adda conversion module development))
- 2015-06-08 02:23:58下载
- 积分:1
-
陈敏物联网仿真
与陈敏《OPNET物联网仿真》配套的源码(this is source code of the booke of <OPNET IOT Simulation>)
- 2020-09-16 13:07:55下载
- 积分:1
-
矩阵求逆C程序
#include #include #include #define MAX 20 #define E 0.000000001 /** * 计算矩阵src的模 */ double calculate_A( double src[][MAX], int n ) { int i,j,k,x,y; double tmp[MAX][MAX], t; double result = 0.0; if( n == 1 ) { return src[0][0]; } for( i = 0; i < n; ++i ) { for( j = 0; j < n - 1; ++j ) { for( k = 0; k < n - 1; ++k ) &
- 2023-02-22 20:10:03下载
- 积分:1