-
文本分割
对于文本分割功能,并不差,使用使用 c + + 实现的你可以给它一试,于某简单。
- 2022-10-11 14:35:03下载
- 积分:1
-
Runge
Runge-Kutta-Verner方法求积分,包括cpp源码-Runge-Kutta-Verner method of quadrature, including the cpp source code
- 2022-02-05 09:26:15下载
- 积分:1
-
一个比较简单的算法程序。输入一些数,计算后按照矩阵的形式输出。设了三个数组a[],b[],c[]。分别实现c[]=a[]+b[],c[]=a[]...
一个比较简单的算法程序。输入一些数,计算后按照矩阵的形式输出。设了三个数组a[],b[],c[]。分别实现c[]=a[]+b[],c[]=a[]-b[],c[]=a[]*b[]。-a relatively simple procedure of the algorithm. The importation of some few, calculated in accordance with the matrix in the form of output. Established three array a [], [] b, c []. C respectively, to achieve a = [] [] [] b, c = a [] []- [] b, c [] [] = a* b [].
- 2022-06-29 20:00:13下载
- 积分:1
-
source code for arithmatic coding
source code for arithmatic coding
- 2022-03-06 15:28:47下载
- 积分:1
-
Implements Minimum Search Tree using Kruskal Algorithm
Implements Minimum Search Tree using Kruskal Algorithm
- 2022-01-23 10:06:31下载
- 积分:1
-
Disfrft
本程序能够实现分数阶傅里叶变换的功能,也就是Disfrft的编程。-Disfrft
- 2023-05-21 14:05:04下载
- 积分:1
-
一个经典问题的比较好的解决方法
一个经典问题的比较好的解决方法-a classic problem of a relatively good solution
- 2022-01-25 19:47:43下载
- 积分: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
-
用c++实现的矩阵运算类,包括了各种矩阵的运算
用c++实现的矩阵运算类,包括了各种矩阵的运算-With c++ Realization matrix calculation categories, including a variety of matrix operations
- 2022-03-25 07:07:16下载
- 积分:1
-
可以自由定义长度的bits
c++的bit模板只能用常数制定大小,这里重新定义bit使其可以用变量第一定义大小,更方便
- 2022-02-21 14:25:29下载
- 积分:1