登录
首页 » matlab » BIRCH

BIRCH

于 2019-04-04 发布
0 242
下载积分: 1 下载次数: 20

代码说明:

说明:  使用MATLAB语言,基于B-TREE树实现了层次聚类算法,并且进行了绘图输出。(The main program of hierarchical clustering using B-Tree.)

文件列表:

BIRCH\AddCF0toBTree.m, 24114 , 2018-06-15
BIRCH\BIRCH程序说明.txt, 526 , 2018-06-15
BIRCH\CreatCF.m, 267 , 2018-05-23
BIRCH\DataSet.mat, 1464 , 2017-05-23
BIRCH\MainOfBirch.m, 3667 , 2018-06-15
BIRCH, 0 , 2018-06-15

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • exp2-1
    数据结构(第四版)第二章上机实验题源程序答案详解(Data structure (fourth edition) chapter on lab answer questions Detailed source)
    2014-12-31 09:14:51下载
    积分:1
  • ——链表(双向循环链表)
    双向循环链表节点:数据域+指针域指针域:一个指针指向前一个同类型节点,另一个指针指向后一个同类型节点(1)设计节点struct db_node{int data;struct db_node * prev;struct db_node * next;};(2)创建空链表//创建了一个只有头节点的双向循环链表,返回头节点的地址struct db_node * create_db_list(void){struct db_node * phead = (struct db_node *)malloc(sizeof(struct db_node));if(phead == NULL)exit(-1);else{phead->next = phead;phead->prev = phead;}return phead;}(3)制造新节点//制造新节点,返回新节点的地址struct db_node * make_db_node(int value){struct db_node * pnew = (struct db_node *)malloc(sizeof(struct db_node));if(pnew == NULL)printf("malloc failed! ");else{pnew->data = value;pnew->next = NULL;pnew->prev = NULL;}return pnew;}(4)插入节点//把pnew指向的节点插入到头节点的前面,也就是整个链表的末尾bo
    2022-02-14 07:06:11下载
    积分:1
  • 一个会议签到系统
    一个会议签到系统-a meeting attendance system
    2023-04-11 08:50:04下载
    积分:1
  • 运动会分统计系统 的课程设计
    运动会分数统计系统 数据结构的课程设计-Games scores of statistical systems data structures curriculum design
    2022-10-25 08:20:02下载
    积分:1
  • 高精度的加减乘法,可以自定义进制,作为类实现,直接使用即可。...
    高精度数的加减乘法,可以自定义进制,作为类实现,直接使用即可。-precision the number of addition and subtraction multiplication can be defined band, as the category achieved, can be used directly.
    2022-07-17 17:30:45下载
    积分:1
  • 教材,利用循环队列,非常不错
    根据数据结构教材,利用循环队列,非常不错-based data structure materials, the use of recycling cohort, very good
    2022-07-12 07:56:51下载
    积分:1
  • 哈弗曼编码器,含有完整源码。文件的输入与输出。
    哈弗曼编码器,含有完整源码。文件的输入与输出。-Havermann encoder, includes full source code. File input and output.
    2022-08-24 01:35:39下载
    积分:1
  • vfp库应用编程
    vfp数据库应用编程-Probe Database Application Programming
    2022-04-25 10:40:53下载
    积分:1
  • 0908030206xin
    一、 地理数据文件应用 对由点、线、面构成的地理数据文件进行打开、读取、关闭操作。 要求: 1、在C++环境下,通过程序设计实现文本格式数据文件的操作; 2、在打开数据文件后,生成点、线、面三个链表,分别用于记录三种类型的数据。 3、数据文件结构说明 (Geographic data file applications by point, line, surface consisting of geographic data file open, read, and close operations. Requirements: in C++ environment, through the program design text format data file operations 2, open the data file, generate points, lines, surfaces three linked list, respectively, for the record three types of data. 3, a data file structure)
    2012-09-14 20:33:26下载
    积分:1
  • Huffman
    霍夫曼编码实验报告,内含源代码,编码原理 (Huffman coding lab report, containing the source code, coding theory)
    2011-06-04 20:44:25下载
    积分:1
  • 696518资源总数
  • 105949会员总数
  • 22今日下载