登录
首页 » 算法 » 数据结构-算法-C语言-Demo

数据结构-算法-C语言-Demo

于 2022-01-29 发布 文件大小:186.66 kB
0 89
下载积分: 2 下载次数: 1

代码说明:

#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:

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

发表评论

0 个回复

  • 组合数学全序列生成
    组合数学全序列生成的Java实现,共实现了五种算法,有图形界面,需要安装substance库
    2022-03-06 21:25:32下载
    积分:1
  • 基于支持向量机的非线性信道盲均衡的研究
    基于支持向量机的非线性信道盲均衡算法的研究-Based on support vector machine nonlinear channel blind equalization algorithm
    2023-08-03 12:00:03下载
    积分:1
  • MLP source code
    神经网络是现代智能系统的有力工具。目前,在模式识别、特征映射、聚类、分类等应用中,神经网络是必不可少的组成部分。近几十年来,发展了几种类型的神经网络。反向误差传播、Kohonen特征映射和Hopfield网络是已经发展起来的一些基本网络,并在许多应用中得到了应用。
    2022-02-22 09:22:22下载
    积分:1
  • fortran90 procedures, the use of Runge
    fortran90程序,运用Runge-Kutta法数值求解常微分方程的程序,非常适用,包括源代码、一个算例和输出程序-fortran90 procedures, the use of Runge-Kutta method for numerical solution of ordinary differential equations of the process, is very applicable, including source code, a numerical example and output procedures
    2022-06-21 02:50:43下载
    积分:1
  • 约瑟夫问题。有N个人围成一圈,按顺序编号。从第一个人开始报数,疏导m时候该人退出,并且下一个从1开始报数。求出圈人的顺序。...
    约瑟夫问题。有N个人围成一圈,按顺序编号。从第一个人开始报数,疏导m时候该人退出,并且下一个从1开始报数。求出圈人的顺序。-Joseph problems. There are N individuals and form a circle, according to sequentially numbered. Starting from the first person reported that the number of times to ease the person out of m, and the next one starting from a newspaper a few. Find the circle of people order.
    2022-08-15 13:00:55下载
    积分:1
  • c language version of the CVM, mysvm
    cvm的c语言版,mysvm-manual工具箱介绍-c language version of the CVM, mysvm-manual introduction Toolbox
    2023-09-07 02:50:04下载
    积分:1
  • Simulation of a WCDMA FDD Downlink transmission
    The WCDMA Physical Layer Demo consists of an end-to-end (transmitter-to-receiver) simulation of the Frequency Division Duplex (FDD) Downlink physical layer for several Dedicated Channels (DCH) as specified by the 3GPP standard (Release 99). The current ZIP file includes three different models: channel coding, spreading an
    2022-08-20 13:06:40下载
    积分:1
  • 多元线性回归计程序
    应用背景应用于数理统计,能够将需要的数据再spss中计算好,计算出相关的系数,然后在程序中代入系数,即可算出多元回归的结果,改程序较EXCEL中计算尤为方便,可以提高工作效率。关键技术关键技术,改程序结合了SPSS和C#源码编程,能够直接将SPSS中计算出来的系数导入C#中,然后计算出经过多元线性回归拟合后的结果,计算非常迅速,方便,易于操作,从很大程度上提高了工作效率。
    2022-02-06 15:31:26下载
    积分:1
  • 关于连通性的等分路径压缩带权快速合并
    关于连通性的等分路径压缩带权快速合并算法-on connectivity Aliquot right path with rapid compression algorithm merger
    2022-10-08 19:10:04下载
    积分:1
  • 牛顿差商求数值拟合。包文件中包含一个例子结果文件,包括输入和输出的结果。...
    牛顿差商法求数值拟合。包文件中包含一个例子结果文件,包括输入和输出的结果。-poor numerical fitting. Packet document contains an example of the outcome document, including input and output results.
    2023-03-26 15:35:03下载
    积分:1
  • 696518资源总数
  • 104269会员总数
  • 42今日下载