-
动态规则解数字三角问题给定一个由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
-
采用高斯消元法实现的n阶线性方程组求解程序;
采用高斯消元法实现的n阶线性方程组求解程序;-using Gaussian elimination method to achieve the n-solving linear equations;
- 2022-03-16 19:09:11下载
- 积分:1
-
一维搜索程序――黄金分割点方法,我自己编的!大家多多下载,多多支持啊!...
一维搜索程序――黄金分割点方法,我自己编的!大家多多下载,多多支持啊!-one-dimensional search procedures-- Golden Section point, I developed! Members can download the generous support ah!
- 2023-08-05 10:15:03下载
- 积分:1
-
Merge, Insertion, Radix, Heap, Bucket, Quick, Counting排序算法
Merge, Insertion, Radix, Heap, Bucket, Quick, Counting排序算法-Sort Algorithm about Merge, Insertion, Radix, Heap, Bucket, Quick, Counting
- 2022-01-30 11:22:27下载
- 积分:1
-
仿生模式识别 目标跟踪
用仿生模式识别来训练目标,在视频序列中跟踪目标
function [sausage, num] = hypersausage_construct(P)
%按照样本给定的顺序去求解超香肠神经元
[~, W] = size(P);%W是训练样例的个数
sausage = [];
for i = 2:W
temp = power_two(P(:, i - 1), P(:, i));%构建第i-1个神经元 //temp是一个行向量
%temp = power_three(P(:, i - 2), P(:, i-1),P(:,i));
sausage = [sausage temp];
end
sausage = [sausage P(:, end)];
num = (size(sausage, 2) - 1) / (W - 1);
- 2023-08-13 14:40:03下载
- 积分:1
-
Hypersonic Reentry
这一代码是最终确定的计算与简化模型的车辆进入大气层的轨迹。
- 2022-01-25 14:52:30下载
- 积分:1
-
机械设计优化的鲍威尔无约束优化方法…
机械优化设计,鲍威尔法无约束优化程序,程序可以在vc6.00++环境运行-Optimization of Mechanical Design, Powell method for unconstrained optimization procedure, the procedure can vc6.00++ Environment running
- 2022-08-16 00:47:09下载
- 积分:1
-
ARTMAP的C语言程序
ARTMAP的C语言程序-ARTMAP the C Programming Language
- 2023-02-17 03:25:03下载
- 积分:1
-
只是另一个 Dec2 Bin 转换器
将一个无符号的十进制整数的二进制表示形式转换为
- 2022-12-13 06:40:03下载
- 积分:1
-
24点算法
用delphi写的一个关于任意四位数,通过加减乘除四则运算,最终得到24
把所有的可能算法依次计算,当得到有算法结果为24时,将计算公式给写,并退出
有兴趣的,可以把所有的正确算法都给出
- 2022-01-30 22:03:38下载
- 积分:1