-
二分搜索CPP算法代码
二分查找又称折半查找,优点是比较次数少,查找速度快,平均性能好;其缺点是要求待查表为有序表,且插入删除困难。因此,折半查找方法适用于不经常变动而查找频繁的有序列表。首先,假设表中元素是按升序排列,将表中间位置记录的关键字与查找关键字比较,如果两者相等,则查找成功;否则利用中间位置记录将表分成前、后两个子表,如果中间位置记录的关键字大于查找关键字,则进一步查找前一子表,否则进一步查找后一子表。重复以上过程,直到找到满足条件的记录,使查找成功,或直到子表不存在为止,此时查找不成功。
- 2022-03-20 05:11:34下载
- 积分:1
-
math.net收入数学C #实现具体功能:
Math.NET开源数学库
C#实现
具体功能:
- A linear algebra package, see MathNet.Numerics.LinearAlgebra.
- A sparse linear algebra package, see MathNet.Numerics.LinearAlgebra.Sparse.
- Non-uniform random generators, see MathNet.Numerics.Generators.
- Distribution fonctions, see MathNet.Numerics.Distributions.
- Statistical accumulator, see MathNet.Numerics.Statistics.
- Fourier transformations, see MathNet.Numerics.Transformations.
- Miscellaneous utilies (polynomials, rationals, collections).-Math.NET revenue math C# achieve specific functions :- A linear algebra package, see MathNet.Numerics.LinearAlgebra.- A spar se linear algebra package, see MathNet.Numerics.LinearAlgebra.Sparse .- Non-uniform random generators. see MathNet.Numerics.Generators.- Distribu tion fonctions. see MathNet.Numerics.Distributions.- Stati stical accumulator, see MathNet.Numerics.Statistics.- Fourier t ransformations. see MathNet.Numerics.Transformations.- Mis cellaneous utilies (polynomials. rationals, co
- 2022-01-31 12:13:31下载
- 积分:1
-
21065L fft fir 源码
对于dsp系统的开发与应用有很大的好处。
21065L fft fir 源码
对于dsp系统的开发与应用有很大的好处。-21065L fft fir dsp source for the system development and application had a great advantage.
- 2022-01-20 23:16:59下载
- 积分:1
-
框架结构自振特性分析代码
框架结构自振分析matalab代码,主要针对平面框架结构,对空间框架结构的分析具有参考价值。采用2D梁单元进行网格细分,能够根据使用者的要求来定义单元的大小。在对平面框架进行动力时程分析时,只需要读入加速度时程文本,嵌入中心差分模块即可。
- 2022-02-13 08:19:44下载
- 积分:1
-
基于matlab的约束非线性规划算法库,适于学习!
基于matlab的约束非线性规划算法库,适于学习!-Matlab-based algorithm for the constrained nonlinear programming library, suitable for learning!
- 2022-04-12 20:56:36下载
- 积分:1
-
编程输出菱形图案
* * * * * * * * * * * * * * * *
- 2022-01-28 22:50:33下载
- 积分:1
-
模拟退火算法代码
用模拟退火算法实现的车辆配送货问题,当时的智能算法作业,自己纯手编。希望对大家有用。
- 2022-05-18 10:05:41下载
- 积分:1
-
分段算法的程序,很好的。绝对简练
分段算法的程序,很好的。绝对简练-Segmentations procedures very well. Absolutely concise
- 2022-02-20 22:08:48下载
- 积分:1
-
C经典代码大全
一些C编程语言经典编程题目,希望对大家有用。#include
int main(void)
{
unsigned int i = 0x12345678;
char*pc =(char*)&i;
printf("0x%x
", *pc);
double *pd = (double*)&i;
printf("%f
", *pd);
printf("sizeof pc = %d sizeof pd = %d
", sizeof(pc), sizeof(pd));
return 0;
}
- 2022-04-01 10:36:20下载
- 积分:1
-
基于18B20的温度控制系统
该系统采用18B20和51单片机进行Protues仿真,能够通过18B20实现温度检测和控制,并通过protues进行仿真。仿真结果真实可信,试验无误,特此分享。
- 2022-09-01 05:30:03下载
- 积分:1