-
基于密度聚类算法
DBSCAN(Density-Based Spatial Clustering of Applications with Noise)是一个比较有代表性的基于密度的聚类算法。与划分和层次聚类方法不同,它将簇定义为密度相连的点的最大集合,能够把具有足够高密度的区域划分为簇,并可在噪声的空间数据库中发现任意形状的聚类。
- 2022-05-26 05:44:16下载
- 积分:1
-
有向加权图的建立、显示和寻找最短路径
有向加权图的建立、显示和寻找最短路径- Has to the weighting chart establishment, demonstrated and
seeks the most short-path
- 2022-12-17 06:50:03下载
- 积分:1
-
电影票
图书馆管理系统 C+ + * 递归程序为线性搜索 * /#includeint 线性 (int [],int,int) ;无效的主要 (){int a [20],pos = 1,n,k,我 ;clrscr() ;printf ("nEnter n 值:") ;scanf ("%d",& n) ;printf ("nEnter 元素的数组:") ;为 (我 = 0 ; 我 < n; i + +)scanf ("%d"& a[i]) ;printf ("n 输入要搜索的元素:") ;scanf ("%d"& k) ;pos=linear(a,n,k) ;if(pos!=-1)printf ("n 搜索成功,发现位置 %d 处的元素",pos) ;其他printf ("搜索失败,找不到元素") ;残培 () ;}int 线性 int k int n int []){int ;为 (我 = n-1 ; 我 > = 0; 我 — —){if(a[i]==k)return(i) ;其他{n = n-1 ;return(linear(a,n,k)) ;}}返回-1 ;}
- 2022-02-02 00:00:53下载
- 积分:1
-
关于一个visual basic中文件打开的一个程序应用广泛
关于一个visual basic中文件打开的一个程序应用广泛-on a visual basic documents which opened an extensive application process
- 2022-06-13 03:40:39下载
- 积分:1
-
黑洞的算法,和二分法,我写的,嗲给知道一些,自己感觉还可以。...
黑洞的算法,和二分法,我写的,嗲给知道一些,自己感觉还可以。-Black hole of algorithms, and the dichotomy, I wrote some satay to know that they feel can also.
- 2022-03-13 17:17:56下载
- 积分:1
-
DFP广告管理系统,本程序适用于形式f(x)= 1的解/ 2×39和# ax+bx+C。
DFP, 本程序适用于求解形如f(x)=1/2*x Ax+bx+c二次函数的稳定点
-DFP, this procedure applies to solution of the form f (x) = 1/2* x" Ax+ bx+ c quadratic function of the stable point
- 2022-08-13 00:12:54下载
- 积分:1
-
c++经典代码大全
资源描述c++经典代码大全 例子 案例 classic C++ code example
- 2022-04-27 18:55:28下载
- 积分:1
-
本代码是《计算机常用数值计算算法与程序 C++版》一书的配套矩阵运算代码,这些C++程序已经在Virsual C++ 6.0环境下通过。注意,在VC++ 6.0...
本代码是《计算机常用数值计算算法与程序 C++版》一书的配套矩阵运算代码,这些C++程序已经在Virsual C++ 6.0环境下通过。注意,在VC++ 6.0中设置好路径,特别include目录(文件夹)的路径,否则在编译时会出现找不到头文件的错误,使编译无法正常进行。-the code is "commonly used computer numerical algorithms and procedures C version," a book supporting matrix calculation code, these procedures have been in C C 6.0 Virsual environment through. The attention of the VC 6.0 installed path, in particular include directory (folder) path, otherwise there will be compiled header files could not find the mistakes and the compiler not normal.
- 2022-06-02 22:29:53下载
- 积分:1
-
FFT algorithm version of the C language description of classes.
FFT 算法的C语言班版描述。本人亲自编写,希望对你有用。-FFT algorithm version of the C language description of classes.
- 2022-03-04 05:48:04下载
- 积分:1
-
最长公共子字符串
资源描述求两个输入序列的最长的公共子字符串的长度。子字符串中的所有字符在源字符串中必须相邻。
如字符串:21232523311324和字符串312123223445,他们的最长公共子字符串为21232,长度为5。
- 2022-04-16 21:07:31下载
- 积分:1