-
浙大acm模板
浙大acm模板-Zheda template acm。。。。。。。。。。。。。。。。。。
- 2022-01-25 14:54:50下载
- 积分:1
-
ACM contest basic Exercises
ACM大赛基本练习题-ACM contest basic Exercises
- 2022-02-14 06:11:36下载
- 积分:1
-
mime64是什么:mime64是一rfc1341 MIME base64编码描述为其铺…
WHAT MIME64 IS: MIME64 is an encoding described in RFC1341 as MIME base64.Its purpose is to encode binary files into ASCII so that they may be passedthrough e-mail gates. In this regard, MIME64 is similar to UUENCODE.Although most binaries these days are transmitted using UUENCODE, Ihave seen a few using MIME64, and I have had requests from friends thatI decode MIME64 files that have fallen into their hands. As long assome MIME64 continues to exist, a package such as this one is usefulto have.
- 2022-03-22 13:30:49下载
- 积分:1
-
FP-growth Algorithm
FPgrowth is the one of the algorithm in frequent item set mining. It is used to find the frequent item set in a database. It will give the output in tree structure format. It is more efficient than apriori algorithm because there is no candidate generation.
- 2022-07-02 22:50:47下载
- 积分:1
-
很有用的算法哦。这是我好不容易
很有用的算法哦。这是我好不容易-useful algorithm oh. This is not easy, I
- 2023-02-03 05:05:04下载
- 积分:1
-
鼹鼠闯迷宫
资源描述void creatWay(int (*mg)[N],int x, int y)//在迷宫中产生一条路,使用图的深度遍历思想来实现,
{
static int dir[4][2] = {0, 1, 1, 0, 0, -1, -1, 0};////将要走的4个方向保存在二维数组中
int zx = x*2;
int zy = y*2;
int next, turn, i;
mg[zx][zy] = 0;
if(rand()%2)
turn = 1;
else
turn = 3;
for(i=0,next=rand()%4;i
- 2022-01-26 05:46:58下载
- 积分:1
-
多项式曲线拟合,和三角分解(LU分解)
任意阶的多项式曲线拟合方程,附三角maxtix分解-polynomial curve fitting, and triangularity decomposition(LU decmposition)
- 2023-09-01 15:10:03下载
- 积分:1
-
代码打印你好世界
资源描述Python是一种非常简单的语言,并有一个非常简单的语法。它鼓励程序员编程没有样板(制)的代码。Python中的最简单的指令是“打印”指令,它只打印出一行(也包括换行符,不像C)。有两个主要的Python版本,Python 2和Python 3。Python 2和3是完全不同的。 ;
- 2023-03-23 09:35:04下载
- 积分:1
-
给定N个不等距点上的函数值,计算指定区间上的三次插值多项式与指定插值点上的函数值...
给定N个不等距点上的函数值,计算指定区间上的三次插值多项式与指定插值点上的函数值-Given N non-equidistant points on the function value, calculated on a specified interval with the specified three interpolating polynomial interpolation points on the function value
- 2022-02-26 16:23:00下载
- 积分:1
-
克鲁斯卡尔算法
资源描述
基于C++的求最小生成树克鲁斯卡尔算法,运行效率良好
- 2022-02-03 02:12:33下载
- 积分:1