-
利用关联导纳矩阵形成节点导纳矩阵
利用关联导纳矩阵形成节点导纳矩阵,用于潮流计算,具有很好的通用性。
- 2022-07-19 14:48:10下载
- 积分:1
-
tokeniising c 程序
它是一个 c 程序 tokmiser 你必须给 c 程序输入 tokensise 。这是基本的 c 程序 tokensiser
- 2022-02-01 21:21:22下载
- 积分:1
-
音频数据压缩算法源码
此部分源码可以完成PCM和G711 G726的压缩,经过实际测试,压缩效果挺不错的。通过将电脑采集的PCM数据压缩成g711或者g726格式,方便对音频的处理
- 2022-03-21 15:01:31下载
- 积分:1
-
复化梯形公式 数值算法
复化梯形公式 数值算法-Minute trapezoid formula Numerical Algorithms
- 2022-05-12 19:17:09下载
- 积分: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
-
HDU1010迷宫问题
POJ1010迷宫问题的的源码,采用了搜索+剪枝
思想:由于本题中规定只有在固定时刻到达目的点才能逃脱,
不能提早,更不能延迟,故不能用bfs。可以用dfs找出所有情况,
若有可行解,直接返回即可。本题比较郁闷的是,在tzc上将方向
数组int dir[4][2]稍微变动两下,就会超时。
- 2023-05-07 02:15:03下载
- 积分:1
-
卡尔曼滤波是一种重要的数字视频图象跟踪方法。
卡尔曼滤波是一种重要的数字视频图象跟踪方法。-Kalman filtering is an important digital video image tracking method.
- 2023-07-24 14:10:03下载
- 积分:1
-
several independent firms for each and every line and every small units of one t...
数独求解
每行和每列和每小格为1到9的数字,用程序求解的算发.-several independent firms for each and every line and every small units of one to nine the number of procedures for the count fat.
- 2022-08-09 01:01:35下载
- 积分:1
-
128位长双精度型数字运算包
128位长双精度型数字运算包-128 long double precision numeral operation package
- 2022-06-16 16:49:03下载
- 积分:1
-
样条插值函数,插值边界条件为自然边界条件。运行编写环境C...
样条插值函数,插值边界条件为自然边界条件。运行编写环境C-spline interpolation function, interpolation boundary conditions for the natural boundary conditions. Operation C-environment
- 2022-08-08 06:32:06下载
- 积分:1