-
输入三角形的三点坐标,计算三角形面积,周长
输入三角形的三点坐标,计算三角形面积,周长-Enter the three coordinates of the triangle to calculate the triangle area, perimeter
- 2022-08-25 19:47:59下载
- 积分:1
-
计算雅克比行列式的小程序
计算雅克比行列式的小程序-calculating the determinant than small programs
- 2023-05-17 22:00:03下载
- 积分:1
-
传热学二维稳态C++程序
单位长度为一。内外壁分别维持450度和50度。管道热导率1.05W/(m.k),求每米长管道热损失。
- 2022-05-25 20:51:34下载
- 积分:1
-
文件MD5 生产算法
char *MD5_file (char *path, int md5_len)
{
FILE *fp = fopen (path, "rb");
MD5_CTX mdContext;
int bytes;
unsigned char data[1024];
char *file_md5;
int i;
if (fp == NULL) {
fprintf (stderr, "fopen %s failed
", path);
return NULL;
}
MD5Init (&mdContext);
while ((bytes = fread (data, 1, 1024, fp)) != 0)
{
MD5Update (&mdContext, data, bytes);
}
MD5Final (&mdContext);
file_md5 = (char
- 2022-07-11 22:12:17下载
- 积分:1
-
基于最小堆的Huffman算法c语言实现;
基于最小堆的Huffman算法c语言实现;时间复杂度:O(n*lg(n));空间复杂度:O(n*lg(n));
- 2022-03-19 08:51:16下载
- 积分:1
-
计算方法c线性插值函数
计算方法c线性插值函数-function using c languange to make an algorithmic method of linear interpolation
- 2022-02-26 07:07:12下载
- 积分:1
-
信息论编码中用hufman程序来实现的hufman编码
信息论编码中用hufman程序来实现的hufman编码- In the information theory code hufman which realizes with the
hufman procedure codes
- 2023-03-06 03:50:03下载
- 积分:1
-
基于遗传算法的神经网络训练源代码
采用遗传算法对6变量输入、50个隐含层、3个输出层的变量构成的神经网络模型进行训练,包含源数据和源代码,可以直接修改应用。
- 2022-09-13 15:00:03下载
- 积分:1
-
给出插值算子的算法,牛顿法求解非线性方程,欢迎大家给出意见。...
给出插值算子的算法,牛顿法求解非线性方程,欢迎大家给出意见。-Interpolation operator is given algorithm, Newton method for solving nonlinear equations, welcome to give their views.
- 2022-03-10 14:45:50下载
- 积分:1
-
计算两个100位大数的除法,结果保留100位小数
计算两个100位大数的除法,结果保留100位小数-Calculation of two of the division of large numbers 100, 100 to retain a small number of results
- 2022-06-03 18:58:35下载
- 积分:1