-
矩阵求逆算法程序, c++ 编写
矩阵求逆算法程序, c++ 编写-matrix inversion algorithm, c prepared
- 2022-04-18 21:58:20下载
- 积分:1
-
c语言数值算法,不是我本人设计。但确实很高效,编码习惯也很好...
c语言数值算法,不是我本人设计。但确实很高效,编码习惯也很好-c language numerical algorithm is not my design. It is indeed very efficient, very good coding habits
- 2022-12-08 13:00:02下载
- 积分:1
-
A program ,Using language c to relize ,can solve the line system of equations an...
用C语言来实现的一个程序,可以求解线生方程组,比LU分解法求解速度快。- A program ,Using language c to relize ,can solve the line system of equations and rapider than a program with the way of LU Resolution
- 2023-05-20 06:20:04下载
- 积分:1
-
人工蜂群
这是人工蜂群蚁群算法 matlab m 文件。这种优化算法由德尔维什 Karaboga.The algortihm 非常简单,它是非常有用。
- 2023-08-02 10:25:04下载
- 积分:1
-
线性表的基本运算及多项式的算术运算
线性表的操作:
在顺序列表类SeqList中增加成员函数void Reverse(),实现顺序表的逆置
在顺序表类SeqList中增加成员函数bool DeleteX(const T &x),删除表中所有元素之等于x的元素。若表中存在这样的元素,则删除之,且函数返回true.否则函数返回false.
编写main函数。调用上述新增函数。
- 2022-02-10 04:16:32下载
- 积分: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
-
来客登记系统 c语言
资源描述
工程设计作业
- 2022-01-28 23:48:12下载
- 积分:1
-
哈弗曼压缩
huffuman压缩是一种无损压缩,本程序采用huffuman算法,利用最建树,并利用哈希表,加快寻找各结点效率,压缩在百分之八十
- 2022-02-14 05:57:36下载
- 积分:1
-
CFLP 问题实现
Capacitated 设施选址问题 (CFLP) 是简单的工厂选址问题的推广。来,我们现在,假设每个设施可以产品的生产数量有限。它是相当普遍的假设和重要性。虽然这些问题的数学模型不是很有区别,但解决方法为 CFLP 是更加困难。CFPL 的最有效方法是 Lagrangen 放松的方法和矩阵的列生成方法.
- 2022-03-31 00:04:42下载
- 积分:1
-
这几天学VC界面编程,在VC在线上狂看教程,觉得有所长进,于是把以前的Java代码用VC改写了一下。问题还是那个老掉牙的问题,八皇后问题,老归老,但我很喜欢...
这几天学VC界面编程,在VC在线上狂看教程,觉得有所长进,于是把以前的Java代码用VC改写了一下。问题还是那个老掉牙的问题,八皇后问题,老归老,但我很喜欢-VC these days learn programming interface, the VC frenzy see online tutorial, some feel that complacency. So, before the Java code with VC rewritten a bit. Problems or those long-standing problems, 8 Queen"s problems and old to the old, but I like
- 2022-01-26 15:53:22下载
- 积分:1