-
Binary Search Tree
Binary Search Tree - with additional recursion functions (smallest, parent & successor) etc-Binary Search Tree- with additional recursion functions (smallest, parent & successor) etc
- 2022-01-28 01:15:26下载
- 积分:1
-
精品数据结构
// simpleSeq.cpp :
#include //定义在头文件“seqList.h”中
#include
const int defaultSize = 100;
using std::endl;
using std::cerr;
class SeqList{
protected:
int *data; //存放数组
int maxSize; //最大可容纳表项的项数
int last; //当前已存表项的最后位置(从开始)
void reSize(int newSize); //改变data数组空间大小
public:
- 2022-01-20 22:23:56下载
- 积分:1
-
数值分析雅可比迭代法
数值分析雅可比迭代法-numerical analysis Jacobi iterative method
- 2022-06-29 15:10:45下载
- 积分:1
-
design an O (n2) time algorithm to identify by the number n of the longest seque...
设计一个O(n*n)时间的算法,找出由n个数组成的序列的最长单调递增子序列--design an O (n2) time algorithm to identify by the number n of the longest sequence monotonically increasing sequences.
- 2022-03-01 13:31:38下载
- 积分:1
-
本代码是C语言实现的CRC循环校验具体算法
本代码是C语言实现的CRC循环校验具体算法-the code is the C language CRC checksum algorithm for the cycle
- 2022-11-18 05:00:03下载
- 积分:1
-
A code which employs the SIMPLE
A code which employs the SIMPLE-based pressure-correction method for solving the Navier-Stokes equations using Finite Volume method, Cartesian grid, and a colocated arrangement of variables.
- 2022-04-12 04:45:15下载
- 积分:1
-
牛顿迭代法的数值解法vb程序
这是一个利用vb算法语言来模拟牛顿迭代法的程序,通过不同的迭代过程来体现出迭代次数的多少,从而优化计算,程序里面有两个不同的函数来进行区别。
- 2022-02-03 14:44:30下载
- 积分:1
-
搜索算法,可以直接使用~~~
二分查找(Binary Search) 二分查找又称折半查找,它是一种效率较高的查找方法。 二分查找要求:线性表是有序表,即表中结点按关键字有序,并且要用向量作为表的存储结构。不妨设有序表是递增有序的。
- 2022-06-15 14:57:32下载
- 积分:1
-
ID3 算法
这是开放源代码的 ID3 算法使为我分配的代码。现在我在上传这段代码在这里获得的帮助形式的捐款。我将感谢全给他们会让这段代码动态,现在是静态的。
- 2022-03-26 08:21:37下载
- 积分:1
-
TIN划分,然后遍历生成等值线
通过读取文件中的离散点数据,然后读取断层数据,根据这些数据进行不规则三角网划分,然后对不规则三角网进行遍历,找出各条等值线
- 2023-08-30 09:50:02下载
- 积分:1