-
smallest circle with a branch and bound method! With a good strategy for cutting...
最小圆排列的分支限界法! 用了很好的剪支策略很快的!-smallest circle with a branch and bound method! With a good strategy for cutting sticks soon!
- 2022-02-19 22:32:56下载
- 积分:1
-
很多数值分析算法函数
很多数值分析算法函数-A lot of numerical analysis algorithm function
- 2022-05-21 21:36:22下载
- 积分:1
-
sm2-3-4 C代码
非常详细的SM2、SM3、SM4算法说明及c语言代码,国密局公开算法。
- 2023-05-07 03:20:02下载
- 积分:1
-
自己编写的一些小程序,希望对初学者有理解C语言帮助
自己编写的一些小程序,希望对初学者有理解C语言帮助-I have written a number of small procedures, in the hope that beginners have to understand C language help
- 2022-03-13 06:43:43下载
- 积分:1
-
(C51)读写FAT32文件的源代码
使用单片机(C51)读写FAT32文件的源代码,里面详尽描述了FAT32文件的结构及读写方式
- 2023-04-18 09:35:03下载
- 积分:1
-
G729解码器
G729解码器,用于8K采样的语音处理
- 2022-05-20 05:36:20下载
- 积分: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
-
振动信号盒维数计算
这是一个一维时间序列计盒维数计算程序,用matlab编写
- 2022-06-12 03:22:05下载
- 积分:1
-
contour of heat transfer
contour of heat transfer
- 2022-02-07 02:36:19下载
- 积分:1
-
散列函数源代码
散列表通常是关键字和值对应的数据结构,散列函数用于把关键字映射到相应的数组索引号,由于散列表中每个元素访问到的概率不同,所以应该选用不同的散列函数,以提高程序的查找效率
- 2022-03-12 10:53:15下载
- 积分:1