-
这是复数的加减法运算源代码.使用C++在VC环境中实现.
这是复数的加减法运算源代码.使用C++在VC环境中实现.-This is the plural of addition and subtraction operations source. The use of C in the VC environment to achieve.
- 2022-01-26 01:24:52下载
- 积分:1
-
求串的长度算法的实现
求串的长度算法的实现-Series for the length of the algorithm to achieve
- 2022-08-12 09:11:08下载
- 积分:1
-
数据挖掘中聚类的算法,可以作为学习数学算法的时候用,也可以作为自己开发软件时使用...
数据挖掘中聚类的算法,可以作为学习数学算法的时候用,也可以作为自己开发软件时使用-Clustering in data mining algorithms, mathematical algorithms can be used as learning time, and also can develop software as their own use
- 2023-08-25 03:45:03下载
- 积分:1
-
Romber algorithm with C language
研究生期间上《数值计算方法》课的作业,所有代码都是C语言实现并调试通过,现在上传为大家服务。这是论博格算法-Romber algorithm with C language
- 2023-02-12 00:50:03下载
- 积分:1
-
K-Means算法 mapreduce
public class KmeansMapper extends MapReduceBase implements
Mapper {
// one coodinate(data)
private List coordinate = new ArrayList();
private BasicKMeansTool basicKmeans = new BasicKMeansTool();
public void map(LongWritable key, Text value,
OutputCollector midoutput,
Reporter arg3) throws IOException {
// TODO Auto-generated method stub
String line = value.toString();
String[] dataList = line.split(",");
List distances = null;
StringTokenizer itr;
for (int i = 0; i < dataList.length; i++) {
itr = new StringTokenizer(dataList[i]);
&nbs
- 2023-02-01 17:45:04下载
- 积分:1
-
蚂蚁算法
音乐和弦的识别算法并进行转录记录,以披头士的音乐作为测试集进行和弦识别!
- 2022-03-12 13:21:59下载
- 积分:1
-
own procedures that may be useful to you
自己做的程序,可能对你有用-own procedures that may be useful to you
- 2022-02-01 18:20:34下载
- 积分:1
-
从与相关的快速算法中分离
离散相关和自相关的快速算法-separated from the relevant and related to the fast algorithm
- 2023-07-04 00:20:03下载
- 积分:1
-
red black tree c语言
红黑树是一种自平衡二叉查找树,是在计算机科学中用到的一种数据结构,典型的用途是实现关联数组。它是在1972年由Rudolf Bayer发明的,他称之为"对称二叉B树",它现代的名字是在 Leo J. Guibas 和 Robert Sedgewick 于1978年写的一篇论文中获得的。它是复杂的,但它的操作有着良好的最坏情况运行时间,并且在实践中是高效的: 它可以在O(log n)时间内做查找,插入和删除,这里的n 是树中元素的数目。
- 2023-05-09 07:05:03下载
- 积分:1
-
快速排序算法
使用java写的算法,描述了快速排序!分为递归和非递归两种方法!static void QuickSort (int a[], int p, int r)
{
if (p x的元素交换到右边区域
- 2022-01-25 21:30:05下载
- 积分:1