搜索资源列表
-
0下载:
1.内存管理一律根据实际需要的大小在堆中动态分配内存。
2.边界检查。如果数组下标超越了数组大小界限,会给出警告信息,可以防止非法内存访问以及方便程序的调试。
3.重载了+,-,*,+=,-=,数乘等常见运算符;
4.可以保存数组为二进制数据文件和文本文件两种形式,也可以从二进制数据文件和文本文件读取数据到数组。
5.实现了和矩阵相关的线性代数方程组求解算法。一是高斯选主元消去法二是针对三对角矩阵的追赶法。
6.静态函数Bspline3():3次
-
-
0下载:
线性非线性 插值程序 用来求出 插值函数的 点具体如内容所属-Linear interpolation procedure used to derive non-linear interpolation function, such as the specific content of their
-
-
0下载:
1.建立两个有序得链表(带表头,用头插法);
//2.写一算法在单链表上实现线性表的ListLength(L)运算。
写一算法将单链表中值重复的结点删除,使所得的结果表中各结点值均不相同。
-1. The establishment of two ordered lists too (with header, with the first interpolation) // 2. To write a method to achieve a single linked linear
-
-
0下载:
该程序使用了Bresenham算法的思想将四个象限-The program uses the idea of ??the Bresenham algorithm four quadrants
-
-
0下载:
This is a structure of g code. If Anyone know to convert file from g1 (linear interpolation) to g2 and g3 circular interpolation, tell me how-This is a structure of g code. If Anyone know to convert file from g1 (linear interpolation) to g2 and g3 ci
-
-
0下载:
使用WIN-TC编写一个程序,实现线性插值、抛物插值算法以及曲线拟合。-Using WIN-TC to write a program to achieve linear interpolation, parabolic interpolation and curve fitting algorithms.
-
-
0下载:
根据线性表的抽象数据类型的定义,选择下面任一种链式结构实现线性表,并完成线性表的基本功能。
线性表存储结构(五选一):
1、 带头结点的单链表
2、 不带头结点的单链表
3、 循环链表
4、 双链表
5、 静态链表
线性表的基本功能:
1、 构造:使用头插法、尾插法两种方法
2、 插入:要求建立的链表按照关键字从小到大有序
3、 删除
4、 查找:按位置查找和按值查找
5、 获取链表长度
6、 销毁
编写测试main()函数测试线性表的正确
-