-
二叉树的算法,先序建立,中序遍历
二叉树的算法,先序建立,中序遍历-binary tree algorithm, first sequence established, the preorder
- 2022-08-08 06:11:41下载
- 积分:1
-
这是一个计算银行利息和本利和的VB程序,,只要输入利率,本金,存款年数,就可以直接计算...
这是一个计算银行利息和本利和的VB程序,,只要输入利率,本金,存款年数,就可以直接计算-This is a calculated bank interest and the principal and the VB program, as long as the importation of interest rates, principal, the number of years of deposits, it can be directly calculated
- 2022-07-07 04:02:59下载
- 积分:1
-
本例子演示了如何利用fortran90接口写一个3维变量,并添加属性...
本例子演示了如何利用fortran90接口写一个3维变量,并添加属性-This example shows how to use fortran90 interface to write a three-dimensional variable, and add a property
- 2022-03-25 11:23:12下载
- 积分:1
-
关键词提取
应用背景提取关键词,在一篇文章或一个语句当中,提取语句的关键词。关键技术利用分词算法,提取语句或者文章的关键词
- 2023-02-14 17:40:03下载
- 积分:1
-
C语言常用数据结构全注解
欢迎大家和我交流,相互学习,这些文件均由本人所写或改编,由于这里所有的源代码
版本为V1.0,在加上本人能力有限,所以难免有些错误和缺陷。如果你发现什么错误的地方,
可以通过邮件或博客发送给我。我编写这些常用数据结构的主要原因也是因为自己当初没有
学好,所以亡羊补牢一下,复习复习。我觉得只看书印象是不深刻的,所以就将它们编写实
现出来。为了方便管理和组织,顺便就脚上了make 编译系统,让其更好的运行和编译。
总得算是写了不少,如果仅仅留在自己的硬盘是,也太浪费资源了,所以就顺便传到网
上来公大家参考,方便大家学习,对喜欢makefile 的朋友,也有一定的学习价
- 2022-02-05 01:26:31下载
- 积分: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
-
天然气管道连接问题原程序,一百个用户,其中有四个无效用户,将其它96个有效用户连接成一个树形网络,用kruskal算法实现...
天然气管道连接问题原程序,一百个用户,其中有四个无效用户,将其它96个有效用户连接成一个树形网络,用kruskal算法实现-Natural gas pipeline to connect the issue of the original procedure, 100 users, which has four invalid users, will the other 96 valid user to connect into a tree network, using Kruskal Algorithm
- 2023-05-07 08:15:03下载
- 积分:1
-
能实现16位的快速傅立叶变化,位数可自由设定,输出斜波可调整个数...
能实现16位的快速傅立叶变化,位数可自由设定,输出斜波可调整个数-Can realize the fast Fourier 16 changes in the median can be free to set up, the output ramp adjustable number of
- 2022-02-05 23:36:04下载
- 积分:1
-
钳位三次样条算法;
数值计算算法:夹紧三次样条算法的数学写帕斯卡尔 来构造三次样条插值S为函数f, 在数x(0)
- 2022-01-26 07:21:33下载
- 积分:1
-
一个正整数的集合S,c是一个正整数,在s的子集中判断是否存在子集和为c的子集...
一个正整数的集合S,c是一个正整数,在s的子集中判断是否存在子集和为c的子集-A set of positive integers S, c is a positive integer, in the subset of s, to determine whether there is a subset of a subset of and for the c
- 2022-03-23 14:57:41下载
- 积分:1