-
背包问题的C++ 实现
背包问题的 求解代码,自己用C++实现,里面包括0-1背包问题 和 单位质量的背包问题,包括如下几个关键的函数:void vwComp(Item*item,int n) ;void vwSort(Item*item,int n);int getMaxValue(Item*item,int n, int p,int cvs,int cws);double frackKnapsack(Item*item,int n,double *chs);void zeroOneKnapsack(Item*item,int n,int &fv,int &fw,int *fch)
- 2022-10-14 21:55:03下载
- 积分:1
-
- 2023-06-21 16:20:04下载
- 积分:1
-
数据挖掘中频繁项挖掘Aporial算法
该算法实现了数据挖掘中基于候选集的频繁项的挖掘,对于训练数据的处理,我们使用一个hashmap表来模拟初始阶段的数据,让后根据支持度来从候选集中找出满足支持度的频繁项,然后进行下一层的频繁项挖掘
- 2023-09-02 10:30:03下载
- 积分:1
-
I have written, SAT question of the Johnson algorithm source code, please advice
自己编写的,SAT问题的Johnson算法源代码,请多多指教-I have written, SAT question of the Johnson algorithm source code, please advice
- 2022-05-26 00:52:16下载
- 积分:1
-
二分法搜索的程序实现
二分法搜索的程序实现-dichotomy Search Program
- 2023-09-09 00:35:02下载
- 积分:1
-
Visual Basic 6.0应用编程150例
《Visual Basic 6.0应用编程150例》中的《Example095-媒体文件浏览器 》和《Example096-列表播放媒体文件》在运行过程中需要Windows Media Player 9.0的支持,请读者自行安装. Example001-悬挂式窗口Example002-半透明窗口Example003-椭圆形窗口Example004-组合圆形窗口Example005-多边形窗口Example006-艺术窗口Example007-字形窗口Example008-移动没有标题栏的窗口Example009-窗口背景花纹的实现Example010-渐变的窗口背景Example011-让窗口运行在不同的分辨率下Example012-控件随着窗口大小按比例变化Example013-在运行中显示或隐藏窗口的标题栏Example014-制作软件封面Example015-霓虹灯效果文字Example016-保存窗口设置EXample017-窗口的动画效果Example018-显示动画光标Example019-制作工具栏Example020-Office或IE风格的工具栏Example021-通过鼠标拖动停靠工具栏Example022-在VB中制作和使用菜单Example023-设计弹出菜单Example024-向菜单中添加图标Example025-动态装入菜单项Example026-动态创建控件Example027-具有动感的图片按钮Example028-调用Office助手Example029-图像的打
- 2022-03-10 08:25:05下载
- 积分:1
-
一元三次方程求解器,用于高冥次的三次方程求解。自己用的。...
一元三次方程求解器,用于高冥次的三次方程求解。自己用的。-Unary cubic equation solver for high-Ming times in three equations. Own use.
- 2022-07-22 06:04:03下载
- 积分:1
-
这是有关Kalman矩阵计算的C源程序
这是有关Kalman矩阵计算的C源程序-This is the Kalman matrix calculation of C source
- 2022-12-02 07:45:03下载
- 积分:1
-
24点算法
用delphi写的一个关于任意四位数,通过加减乘除四则运算,最终得到24
把所有的可能算法依次计算,当得到有算法结果为24时,将计算公式给写,并退出
有兴趣的,可以把所有的正确算法都给出
- 2022-01-30 22:03:38下载
- 积分:1
-
GN算法java实现
这是一个经典的社团划分,采用GN算法思想,
基本上是从昨天开始吧,着手复杂网络的GN算法,整个过程包括从GML文件中提取邻接矩阵数据,GN算法的实现,模块度的计算。
(1)GML文件的读取。做GN的时候首次知道GML(Graph Model Language),GML (Graph Modelling
Language): There are many different programs that work with graphs but almost
all of them use their own file format. As a consequence, exchanging graphs
between different programs is almost impossible. Simple tasks like exchange of
data, externally reproducible results or a common benchmark suite are much
harder than neccessary.
Therefore, we have developed a new file format for
the Graphlet system: GML. GML supports attaching arbitrary information to
graphs, nodes and edges, and is therefore able to emulate almost every other
format.
从上面的英文中我们可以知道,GML是一种文件格式,试图统一大家对图结构的表达形式。这样,会很方便大家的交互,比如程序的利用。我们主要工作是从GM
- 2022-02-20 11:14:43下载
- 积分:1