-
基于熵的挖掘数据子空间聚类方法
Entropy Based Subspace Clustering for Mining Data - ENCLUS - a new version of PROCLUS algorithm for clustering high dimensional data set.-Entropy Based Subspace Clustering for Mining Data- ENCLUS- a new version of PROCLUS algorithm for clustering high dimensional data set.
- 2022-09-06 00:25:03下载
- 积分:1
-
simulation program, an example can be reused for other apps.
一个数值计算程序的OpenMP的并行化代码,其中对循环部分的并行化可以做为参考-simulation program, an example can be reused for other apps.
- 2022-06-13 05:47:13下载
- 积分:1
-
NLM C++非局部平均去噪算法
NLM C++ 该程序是实现NLM 的C 源程序,非局部平均去噪算法,在去噪中的好处可想而知,效果不错。可以尝试用一下,看过文章的人应该清楚它的效果,给大家共享下,共勉吧。
- 2022-09-16 13:25:03下载
- 积分:1
-
一些常用的数学数值算法,用C语言编写即可。
一些常用的数学数值算法,用C语言编写即可。-some commonly used mathematical algorithm, using C language can be.
- 2022-07-21 09:27:00下载
- 积分:1
-
LRU最近最少使用算法
LRU最近最少使用算法-LRU algorithm used recently, at least
- 2023-03-03 17:40:03下载
- 积分:1
-
一个二十四点的游戏
一个二十四点的游戏-a 24-point game
- 2023-08-21 01:10:03下载
- 积分: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
-
离散数学的二元关系判断(源与再…
离散数学二元关系性质判断器(源码及报告)-Discrete Mathematics dual nature of the relationship judgment (source and the report)
- 2022-03-06 20:46:51下载
- 积分:1
-
人工智能实验,野人与传教士问题的源码,vc++编译。
人工智能实验,野人与传教士问题的源码,vc++编译。-Artificial intelligence experiments, Savage and missionaries problem code, vc++ compiler.
- 2023-02-13 02:10:03下载
- 积分:1
-
pid温度控制
应用背景
可以应用在恒温箱温度控制;
水位控制;
以及需要进行PID调节控制的场合;
关键技术改程序主要用于在恒温控制,使用PID算法进行控制,控制精度高。有需要的童鞋可以下载,用在其他控制上可以对着修改即可实现。
- 2023-09-02 17:30:03下载
- 积分:1