-
matlab数值分析与应用
matlab数值分析与应用源程序本书介绍了数值方法的理论及实用知识,并讲述了如何利用MATLAB软件实现各种数值算法,以便为读者今后的学习打下坚实的数值分析与科学计算基础。教师可以根据不同的学习对象和学习目的选择相应章节,形成理论与实践相结合的学习策略。
- 2022-01-25 18:29:09下载
- 积分:1
-
这个程序有别于已经做好exe文件的2
这个程序有别于已经做好exe文件的2-8-10-16进制转换程序而是可以被其他程序调用,或简单地用ctrl c,来复制其中一段至目标程序的源代码-have made exe files 2-8-10-16 base for the conversion process, but the other procedures can be called, or simply use the ctrl c, to replicate some of which target program"s source code
- 2022-02-01 06:25:30下载
- 积分:1
-
基于角色访问控制代码
基于角色访问控制代码,链表创建用户,无数据库, 对用户、角色、权限进行配置和管理;用户对角色的指派和权限到用户的指派 基于RBAC1的角色层次管理 基于RBAC2的互斥角色管理,共包含7条链,用户链(user)、角色链(role)、权限链( 请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
- 2022-08-08 06:40:42下载
- 积分: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
-
自己做的一个kmean聚类程序,里面有例子和聚类程序
自己做的一个kmean聚类程序,里面有例子和聚类程序
-Their clustering kmean to do a procedure, there are examples and clustering procedures
- 2022-03-28 12:14:45下载
- 积分:1
-
用希尔算法实现的排序
用希尔算法实现的排序-Hill with the ranking algorithm
- 2023-08-15 22:05:03下载
- 积分:1
-
数据挖掘是信息产业界近年来非常热门的研究方向,聚类分析是数据挖掘中的核心技术。本文对数据挖掘领域的聚类分析方法及代表算法进行分析,并从多个方面对这些算法性能进行...
数据挖掘是信息产业界近年来非常热门的研究方向,聚类分析是数据挖掘中的核心技术。本文对数据挖掘领域的聚类分析方法及代表算法进行分析,并从多个方面对这些算法性能进行比较,同时还对聚类分析在数据挖掘中的几个应用进行了阐述。-Data Mining is the IT industry is very popular in recent years the direction of the research, cluster analysis is data mining in the core technology. In this paper, the field of data mining methods and the representative of cluster analysis algorithm analysis, and from several aspects of these algorithms to compare the performance, but also on the cluster analysis of data mining in several applications are described.
- 2022-03-12 05:41:12下载
- 积分:1
-
Huffman coding is a lossless encoding said very carefully, and to look carefully...
霍夫曼编码 是一种无失真编码 讲的很详细,仔细看看,收获不小。-Huffman coding is a lossless encoding said very carefully, and to look carefully and learned a lot.
- 2022-02-01 01:07:14下载
- 积分:1
-
一个用delphi编写的关于大数计算的程序,可用于计算任何大小的数字乘积,非常小巧方便,也很适用...
一个用delphi编写的关于大数计算的程序,可用于计算任何大小的数字乘积,非常小巧方便,也很适用-a prepared with the majority of the calculation procedures can be used to calculate the size of any digital product, very small convenient, and very applicable
- 2022-06-15 17:29:16下载
- 积分:1
-
A * 搜索算法
在计算机科学中,A * (发音为"星星") 是一种广泛应用于寻路的计算机算法和遍历图,绘制点之间,可有效地遍历路径的过程称为节点。它指出,其性能和加工精度,享有广泛使用。然而,在实际的旅游路线系统中,它通常被优于算法可以预先处理图形上,以达到更好的性能,尽管其他的研究已经发现 A * 要优于其他方法。
- 2022-03-01 04:50:33下载
- 积分:1