-
Message-Digest Algorithm 5
MD5即Message-Digest Algorithm 5(信息-摘要算法5),用于确保信息传输完整一致。是计算机广泛使用的杂凑算法之一(又译摘要算法、哈希算法),主流编程语言普遍已有MD5实现。
将数据(如
- 2022-12-22 17:25:03下载
- 积分:1
-
有二叉树计算表达式的值
有二叉树计算表达式的值-a binary tree calculate the value of the expression
- 2023-04-10 11:00:03下载
- 积分:1
-
利用AFEPack包求解变二次系数的椭圆型方程.在求解这个问题的过程中,先要把程序的结构进行整理,将变二次项系数的因素加进去 ,并使得其更加有利于复杂一些的问题...
利用AFEPack包求解变二次系数的椭圆型方程.在求解这个问题的过程中,先要把程序的结构进行整理,将变二次项系数的因素加进去 ,并使得其更加有利于复杂一些的问题的求解 。为此,我们使用一个类来管理这个求解的问 题,先写一个对这个类进行声明的头文件 EllipticEquation.h-Use AFEPack package for solving variable coefficient elliptic quadratic equation. In solving this problem, the first to organize the structure of the procedure will change coefficient of quadratic terms added to the list of factors, and make it more conducive to the complexity of some of the problem solving. To this end, we use a class to manage to solve this problem, first write a statement of this type for the header files EllipticEquation.h
- 2022-10-04 20:40:03下载
- 积分:1
-
小母牛问题
小母牛问题- Heifer question
- 2022-04-17 14:07:20下载
- 积分:1
-
xyqkeygeneradtor的生成与实现算法 身份认证的实现以及研究
xyqkeygeneradtor的生成与实现算法 身份认证的实现以及研究-xyqkeygeneradtor generation and authentication algorithm for the realization of research
- 2022-01-25 20:55:25下载
- 积分:1
-
蚁群算法解决TSP旅行商问题
蚁群算法解决TSP旅行商问题
蚁群算法是一种在图中寻找优化路径的机率型算法。他的灵感就是来自于蚂蚁发现食物的行为。蚁群算法是一种新的模拟进化优化的算法,与遗传算法有很多相似的地方。蚁群算法在比较早的时候成功解决了TSP旅行商的问题
- 2022-03-31 12:54:45下载
- 积分:1
-
F-R程序,写的不错哈 拿出来与大家共同分享
F-R程序,写的不错哈 拿出来与大家共同分享-F-R procedures, write out a pretty good Hana shared with you
- 2022-02-07 22:01:57下载
- 积分:1
-
基本分词程序
本算法是中文分词最常用的一种,内含有最大正向匹配算法和最大逆向匹配算法
- 2023-03-24 10:50:03下载
- 积分:1
-
monte carlo方法在各个方面中的小应用
monte carlo方法在各个方面中的小应用-monte carlo method in all aspects of small applications
- 2022-02-10 11:48:07下载
- 积分:1
-
2.时间序列分析
1.二分查找
适用条件:查找序列已经有序
int binarysearch(int a[], int n, int x)
{
int left, right, center;
left = 0;
right = n - 1;
- 2022-03-05 08:28:07下载
- 积分:1