-
数据结构-算法-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
-
常用算法的C程序。主要内容包括多项式的计算、复数运算、随机数的产生、矩阵运算、矩阵特征值与特征向量的计算、线性代数方程组的求解、非线性方程与方程组的求解、插值与
常用算法的C程序。主要内容包括多项式的计算、复数运算、随机数的产生、矩阵运算、矩阵特征值与特征向量的计算、线性代数方程组的求解、非线性方程与方程组的求解、插值与逼近、数值积分、常微分方程组的求解、数据处理、极值问题的求解、数学变换与滤波、特殊函数的计算、排序和查找。-Commonly used algorithm of C procedures. Include polynomial terms, complex computation, random number generation, matrix operations, matrix eigenvalue and eigenvector calculations, linear algebra equations, nonlinear equations with the equations, interpolation and approximation, numerical integration, solving ordinary differential equations, data processing, for solving extremum problems, mathematical transformation and filtering, the calculation of special functions, sorting and search.
- 2022-03-12 05:56:16下载
- 积分:1
-
一个解决龟兔赛跑爬山问题的算法,仅供参考。
一个解决龟兔赛跑爬山问题的算法,仅供参考。-a solution of the race between climbers algorithm, for reference purposes only.
- 2022-03-25 18:59:27下载
- 积分:1
-
真正的公农历转换类.vip
真正的公农历转换类.vip-genuine public Lunar conversion type. Vip
- 2023-01-19 22:00:04下载
- 积分:1
-
偏微分方程数值求解程序
资源描述
偏微分方程问题:假定一个方形材料100mm*100mm,四边分别为第一、第二、第三类边界条件,无内热源,导热系数为常数,分析该区域内的温度变化。
- 2022-03-22 10:11:51下载
- 积分:1
-
%1998年全国大学生数学建模竞赛A题:收益与风险 模型求解
%1998年全国大学生数学建模竞赛A题:收益与风险 模型求解- In 1998 the national university student mathematics modelling
competed the A topic: The income and the risk model solve
- 2023-05-02 15:45:02下载
- 积分:1
-
Eular法解分数阶微分方程,分数阶导数定义系数通过fourier法计算,阶数a变化...
Eular法解分数阶微分方程,分数阶导数定义系数通过fourier法计算,阶数a变化-eular method of fractional differential equations, fractional derivative coefficient defined by fourier law, order a change
- 2022-01-22 04:00:39下载
- 积分:1
-
math, matrix operations
数学运算,矩阵运算的说明共式,包括求逆,行列式等-math, matrix operations-a total of the note, including inversion, as Determinant
- 2022-01-29 01:44:19下载
- 积分:1
-
视频编码的源代码 - H.264图像编码器
H.264 / MPEG-4第10部分或AVC(高级视频编码)的视频压缩标准,并且是目前最常用的格式记录,压缩和分配的高清晰度视频中的一个。在标准的第一个版本的最后起草工作,2003年5月完成。 H.264 / MPEG-4AVC是面向块的运动补偿基于编解码器,由ITU-T视频编码专家组(VCEG)共同制定的ISO / IEC JTC1运动图像专家组(MPEG)标准。该项目的合作伙伴关系的努力被称为联合视频组(JVT)。 ITU-T的H.264标准和ISO/ IEC的MPEG-4 AVC标准(正式,ISO/ IEC14496-10 - MPEG-4第10部分,高级视频编码)共同保持,使它们具有相同的技术含量。 H.264也许是最知名的是的编解码标准的蓝光光盘之一;所有蓝光光盘播放机必须能够解码H.264。它还被广泛用于流媒体网络资源,如Vimeo的,YouTube和iTunes商店,为的Adobe Flash Player和Microsoft Silverlight中的网络软件等,并且还有各种高清晰度电视节目的视频在地面(ATSC,ISDB-T,DVB -T或DVB-T2),电缆(DVB-C)和卫星(DVB-S和DVB-S2)。
- 2022-07-09 17:11:18下载
- 积分:1
-
常用的矩阵,其中包括求行列式,矩阵求逆等,过…
常用的矩阵计算,包括求行列式、求逆矩阵等等,类容较全-common matrix, which includes seeking determinant, matrix inversion, etc., over all types of capacity
- 2023-08-10 22:35:02下载
- 积分:1