-
C++的源程序,是一本非常经典的书籍,可以用在很多…
c数值算法的源码,是非常经典的书籍,可以用在很多方面-c of the source numerical algorithm is a very classic books, can be used in many ways
- 2022-01-25 16:29:13下载
- 积分:1
-
二叉排序树的插入
算法过程:1.将第一个元素放在树根结点。2.将每个要加进来的元素与树根结点比较,若比树根结点小, 再与左子结点比较,若没有左子树,则把此元素放于左子树。反之,比树根结点大, 则再与右子结点比较,若没有右子树,就把此元素放于右子树。3.重复第2步操作,直到所有的元素都被加入二叉树中
- 2022-03-01 19:40:22下载
- 积分:1
-
中缀表达式转中缀表达式,后缀表达式的计算
中缀表达式转中缀表达式,后缀表达式的计算-which is made up of ordinary Chinese expression to expression, the expression calculation Suffix
- 2022-01-26 03:19:50下载
- 积分:1
-
你自己漫漫理解吧,我市转载的
你自己漫漫理解吧,我市转载的-your own long understood it, reproduced in the city
- 2022-04-15 15:51:38下载
- 积分:1
-
The cart with an inverted pendulum, shown below, is "bumped" with an impulse
f...
The cart with an inverted pendulum, shown below, is "bumped" with an impulse
force, F. Determine the dynamic equations of motion for the system, and lin
earize about the pendulum s angle, theta = Pi (in other words, assume that p
endulum does not move more than a few degrees away from the vertical, chosen
to be at an angle of Pi). Find a controller to satisfy all of the design re
quirements given below.
-The cart with an inverted pendulum, shown below, is "bumped" with an impulse force, F. Determine the dynamic equations of motion for the system, and lin earize about the pendulum s angle, theta = Pi (in other words, assume that p endulum does not move more than a few degrees away from the vertical, chosen to be at an angle of Pi). Find a controller to satisfy all of the design re quirements given below.
- 2022-03-17 02:37:20下载
- 积分:1
-
segy文件读写
segy文件读写,读取segy文件数据。C语言编写,简单易懂,对新手非常有帮助的代码。包括傅里叶FFT源程序
- 2023-08-08 08:55:04下载
- 积分: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
-
哈弗曼编码
本算法为哈弗曼编码,主要为手动输入一个字符串,自动统计字符种类和权值,进行哈弗曼编码。要译码的话输入二进制代码,进行译码...
- 2022-05-12 23:42:57下载
- 积分:1
-
该程序完成马尔可夫分析,马尔可夫分析是运筹学中很重要的一个技术。...
该程序完成马尔可夫分析,马尔可夫分析是运筹学中很重要的一个技术。-Markov analysis, operations research, Markov analysis is a very important one technology.
- 2023-03-06 13:55:03下载
- 积分:1
-
C语言基础代码包
找数字,求最大数与最小数,循环右移k位,删除一个数,知道一个数删数,冒泡排序,插入排序的基本代码
- 2022-04-15 18:51:41下载
- 积分:1