-
蛙跳差分方法,精华分(ˇˍ ˇ) 想~
蛙跳差分方法,精华分(ˇˍ ˇ) 想~...
蛙跳差分方法,精华分(ˇˍ ˇ) 想~
蛙跳差分方法,精华分(ˇˍ ˇ) 想~-leap forg
- 2023-09-08 20:35:03下载
- 积分: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
-
一种DT算法
DT算法,可以抽取物体的骨架。它可以一次遍历整个物体,获取其连通骨架。对于0和1格式的离散数据,也可以改变一下程序变为抽取物体的孔隙。
- 2023-08-18 22:25:04下载
- 积分:1
-
FIM最大频繁项集挖掘算法
FIM最大频繁项集挖掘算法
对出现的较快的频繁项集、频繁闭项集、最大频繁项集的挖掘算法
- 2022-08-18 11:01:30下载
- 积分:1
-
An example of turing machine
An example of turing machine
- 2022-02-16 08:05:54下载
- 积分:1
-
2D elastostatic boundry element method
应用背景采用边界积分方程,用于解决二维弹性问题以及势问题,采取常量单元。关键技术
1.边界积分方程
2.弹性力学平衡方程、位移协调方程、边界条件方程、本构方程
3.LAPACK算法包
- 2023-08-28 08:45:03下载
- 积分:1
-
农夫过河问题源代码2
农夫过河问题源代码2-farmer across the river source code two issues
- 2022-03-20 18:48:10下载
- 积分:1
-
动态规则解数字三角问题给定一个由n行数字组成的数字三角形如下图所示。试设计一个算法,计算出从三角形的顶至底的一条路径,使该路径经过的数字总和最大。...
动态规则解数字三角问题给定一个由n行数字组成的数字三角形如下图所示。试设计一个算法,计算出从三角形的顶至底的一条路径,使该路径经过的数字总和最大。-Digital triangle Issue Description : given an OK by the number n of triangular figures shown in the diagram below. Design of a test algorithm, calculated from the top of the triangle to the end of a path, the path through the largest sum of the figures.
- 2022-12-23 12:15:03下载
- 积分:1
-
正则表达式分析器
应用背景这是一个正则表达式自动创建的代码在C + +关键技术C + +,有限自动机正则表达式
- 2022-02-06 22:44:47下载
- 积分:1
-
bp算法
bp算法-bp algorithm.
- 2022-09-30 19:40:04下载
- 积分:1