-
单链表操作
资源描述#include
#define maxsize 100
using namespace std;
/*class base
{
int length;
};*/
class Seqlist //实现顺序表类
{
private:
int size; //当前元素个数
int length; //当前表的总长度
public:
int *elem; //动态存放数据
Seqlist(); //构造函数的声明
int listset(); //顺序表的创建
&nbs
- 2022-06-03 18:29:34下载
- 积分:1
-
遗传算法优化神经网络程序
遗传算法优化神经网络程序matlab
- 2022-05-23 03:03:01下载
- 积分:1
-
huge hex convert to dec. the value limite is less that 10^50
huge hex convert to dec. the value limite is less that 10^50-huge hex convert to dec. The value is limite less that 10 ^ 50
- 2022-02-20 17:06:05下载
- 积分:1
-
大数运算库
大数运算库-Treasury operations of large numbers
- 2022-06-13 11:16:36下载
- 积分:1
-
求解非线性不动点方程组x=G(x)的非线性塞德尔迭代方法,初值x0...
求解非线性不动点方程组x=G(x)的非线性塞德尔迭代方法,初值x0-For solving nonlinear fixed point equation x = G (x) the nonlinear Seidel iterative method, initial value x0
- 2022-08-11 02:55:05下载
- 积分:1
-
用MATLAB编写的运用Monte Carlo method数值积分的实例程序。可供初学者参考学习!...
用MATLAB编写的运用Monte Carlo method数值积分的实例程序。可供初学者参考学习!-TETRAHEDRON_MONTE_CARLO is a MATLAB library which estimates the integral of a function over a tetrahedron using the Monte Carlo method.
The library makes it relatively easy to compare different methods of producing sample points in the tetrahedron, and to vary the tetrahedron over which integration is carried out.
- 2022-02-21 17:32:42下载
- 积分:1
-
使用雅可比和高斯
使用雅可比和高斯-赛德尔算法求解线性方程-The use of Jacobi and Gauss- Seidel algorithm for solving linear equations
- 2022-02-21 23:18:21下载
- 积分:1
-
Taflove 的FDTD算法的经典书籍,非常值得期待的FDTD教程。相信大家喜欢...
Taflove 的FDTD算法的经典书籍,非常值得期待的FDTD教程。相信大家喜欢-Taflove the FDTD algorithm is the classic book, well worth looking forward to the FDTD tutorial. I believe that everyone likes
- 2022-12-21 15:10:03下载
- 积分:1
-
最优化算法,包括各种线性优化和非线性优化问题
最优化算法,包括各种线性优化和非线性优化问题-Optimization algorithms, including linear optimization and nonlinear optimization problems
- 2023-08-18 20:45:04下载
- 积分:1
-
欧拉算法
以近似初值问题的解决方案:
* Y" = F(T,Y),A < = T < = B,Y(A) = 阿尔法,
* 在 N + 1 间隔相等的点在区间 [A,B]。
*
* 输入: 终结点 A、 B ;阿尔法最初的状况 ;整数 N。
*
* 输出: 逼近到 (N + 1) 在 Y W 值 T。
- 2022-07-26 00:49:47下载
- 积分:1