-
算法的一些源代码
1.KMP
2.找K大的数
3.字典排序
4.简单的社交关系映射
5.最大子段和问题
6.最优二叉检索树
7.最长子序列
8.数塔问题
- 2022-06-30 18:18:14下载
- 积分:1
-
哈尼族-代码 doig ID3 算法在快速方式
这是写在 c + + 语言实现的最好的和快速的分类,基于在培训阶段收集的统计信息增益的输入属性的 ID3 算法
- 2022-01-31 21:47:36下载
- 积分:1
-
利用KDD1999数据集进行K
利用KDD1999数据集进行K-means算法的实现-Mathimatics-Numerical algorithms
- 2022-02-04 02:05:42下载
- 积分:1
-
operation research
operation research
- 2022-03-25 03:40:19下载
- 积分:1
-
研究生期间上《数值计算方法》课的作业,所有代码都是C语言实现并调试通过,现在上传为大家服务。这是带权算法...
研究生期间上《数值计算方法》课的作业,所有代码都是C语言实现并调试通过,现在上传为大家服务。这是带权算法-This is the assignment of numerical analysis course during my graduated education,all the codes are realized by C language,and have been debugged successfully,here I d like to share it with all of you.This one realized the algorithm of weighting
- 2022-01-25 20:06:06下载
- 积分:1
-
顺序队列C实现
#include "stdio.h" #include "stdlib.h" #include "io.h" #include "math.h" #include "time.h"#define OK 1#define ERROR 0#define TRUE 1#define FALSE 0#define MAXSIZE 20 /* 存储空间初始分配量 */typedef int Status; typedef int QElemType; /* QElemType类型根据实际情况而定,这里假设为int *//* 循环队列的顺序存储结构 */typedef struct{ QElemType data[MAXSIZE]; int front; /* 头指针 */ int rear; /* 尾指针,若队列不空,指向队列尾元素的下一个位置 */}SqQueue;Status visit(QElemType c){ printf("%d ",c); return OK;}/* 初始化一个空队列Q */Status Init
- 2022-08-13 11:29:01下载
- 积分:1
-
运用链表来操作多项式,实现多项式加减乘的功能
运用链表来操作多项式,实现多项式加减乘的功能-used to operate polynomial, Modified by polynomial functions
- 2022-03-15 02:34:14下载
- 积分:1
-
龙格法可以实现,使用Tkinter
Implemementation of Runge Kunt metthod, using TkInter
- 2023-08-28 15:45:03下载
- 积分:1
-
分数阶傅立叶变换.rar
分数阶傅立叶变换.rar-fractional Fourier transform. Rar
- 2022-02-14 12:43:20下载
- 积分:1
-
多目标蝙蝠优化算法
多目标蝙蝠优化算法是一类寻优精度很高的优化算法,简单实用,且易于实现,算法我已通过运行验证过,很好用,希望能够对大家有所帮助,谢谢!
- 2022-01-24 18:15:24下载
- 积分:1