-
数据结构-算法-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
-
Legendre polynomial algorithm delivery Regulation
勒让德多项式递规算法-Legendre polynomial algorithm delivery Regulation
- 2022-04-17 06:09:49下载
- 积分:1
-
多目标优化
完善的多目标算法,可以用来进行智能的多目标优化,方便实用,是不可多得的优质代码,分享出来供大家参考借鉴,使用时注明出处
- 2022-02-09 14:09:41下载
- 积分:1
-
LC_trie 算法程序源代码
LC_trie 算法程序源代码-LC_trie algorithm source code
- 2022-06-20 04:38:16下载
- 积分:1
-
蚁群算法的java实现
该算法用java程序实现,对传统蚁群算法有一定的改进,不仅使用了轮盘技术而且很大程度上缩短了搜素时间并提高效率,迭代次数减少,有一定的优化。
- 2022-07-20 09:12:23下载
- 积分:1
-
哈希表设计:数组,结构体
哈希表设计:数组,结构体-hash wishes the form is designed: The array, structure body
- 2022-03-03 13:23:00下载
- 积分:1
-
used for the preparation of the polynomial interpolation algorithm
用c++编写的关于多项式插值的算法-used for the preparation of the polynomial interpolation algorithm
- 2022-01-26 01:14:55下载
- 积分:1
-
赋权边覆盖问题——采用禁忌搜索算法的C++实现
本文详细讨论了禁忌搜索算法求解赋权边覆盖问题的定义、原理及求解思路,在文末给出了实验结果及完整的C++实现代码。
- 2022-07-17 14:42:20下载
- 积分:1
-
六轴机器人运动学的源代码
为一个六轴或更少轴机器人的运动学源代码它是用C语言实现的
- 2022-03-21 06:09:04下载
- 积分:1
-
波音747飞机运动空间六自由度仿真模型-Simulink程序.rar
波音747飞机运动空间六自由度仿真模型-Simulink程序.rar波音747飞机运动空间六自由度仿真模型-Simulink程序.rar波音747飞机运动空间六自由度仿真模型-Simulink程序.rar
- 2022-03-03 22:53:52下载
- 积分:1