-
tokeniising c 程序
它是一个 c 程序 tokmiser 你必须给 c 程序输入 tokensise 。这是基本的 c 程序 tokensiser
- 2022-02-01 21:21:22下载
- 积分:1
-
指纹识别系统 C 语言源码
指纹识别系统 c 语言源码 !强烈推荐 !
- 2022-02-20 21:52:08下载
- 积分:1
-
acm中的导弹防御算法
acm中的导弹防御算法-acm of missile defense Algorithm
- 2022-10-19 01:10:03下载
- 积分:1
-
this procedure in running Matlab environment suitable for solving a class of lin...
此程序在matlab环境下运行,适于求解线性规划一类问题。(单纯形法)-this procedure in running Matlab environment suitable for solving a class of linear programming problems. (Simplex)
- 2022-01-26 04:35:30下载
- 积分:1
-
数据结构-算法-C语言-Demo
#ifndef _BINARY_TREE_H_INCLUDED#define _BINARY_TREE_H_INCLUDED#include #include templatestruct Bintree_node {T element;Bintree_node* lchild;Bintree_node* rchild;explicit Bintree_node(const T& elem=T(), Bintree_node* lchd=0, Bintree_node* rchd=0): element(elem), lchild(lchd), rchild(rchd) {}};templateclass Binary_tree {public:typedef Bintree_node* PBtn;Binary_tree();virtual ~Binary_tree();void clear();int depth() const;int size() const;virtual PBtn find(const T& elem) const=0;virtual void insert(const T& elem)=0;virtual void erase(const T& elem)=0;virtual void print(std::ostream& output) const=0;void print_tree(std::ostream& output) const;protected:
- 2022-01-29 04:39:50下载
- 积分:1
-
数据挖掘中的聚类算法,可以作为学习数学算法…
数据挖掘中聚类的算法,可以作为学习数学算法的时候用,也可以作为自己开发软件时使用-Clustering in data mining algorithms, mathematical algorithms can be used as learning time, and also can develop software as their own use
- 2022-06-29 19:05:44下载
- 积分:1
-
Python 利用arcgis 内核进行批量影像镶嵌
在Python下基于Arcgisn内核完成了影像拼接的功能,根据图像的地理位置进行拼接,对于重叠去的处理,就是后面处理的图像会覆盖前面处理的图像,计算所有的输入文件的空间范围的并集,然后根据图像的分辨率,计算结果图像的大小投影等信息,这个函数里面其实可以直接进行投影转换,等一系列的坐标转换处理,程序可以运行。
- 2022-05-17 03:08:46下载
- 积分:1
-
eye location in hue image
eye location in hue image
- 2022-06-30 12:24:31下载
- 积分:1
-
多项式的计算
多项式的计算-polynomial calculations. .
- 2022-08-19 22:45:46下载
- 积分:1
-
C语言实现图书管理系统
1)能录入新商品信息2)能对商品信息进行查询: 可以按编号,按商品名称,按商品类别,按供货商,按产地进行查询3)可以对商品信息进行修改,删除4)商品销售:输入销售单,根据商品编号,读取并显示商品信息,根据销售数量,修改库存。5)可以记录销售的记录,以备查询。6)商品销售信息查询:7)统计
- 2022-02-21 21:46:26下载
- 积分:1