-
实现二叉树的后序的递归和非递归算法。
包括构造函数和析构函数。...
实现二叉树的后序的递归和非递归算法。
包括构造函数和析构函数。-After the realization of the sequence of binary tree recursive and non-recursive algorithm. Including the constructor and destructor.
- 2022-08-24 02:47:46下载
- 积分:1
-
清理vc编译后的中间文件,vc60下编译。是你保持不必要的资源浪费!...
清理vc编译后的中间文件,vc60下编译。是你保持不必要的资源浪费!-Clean-up between vc compiled documents, vc60 compiler under. Is that you keep unnecessary waste of resources!
- 2022-09-15 20:25:03下载
- 积分:1
-
converts from different units of weight from metric to imperial and vica versa.
converts from different units of weight from metric to imperial and vica versa.
- 2023-07-07 11:25:02下载
- 积分:1
-
a good slate procedures
一个很好的画板程序-a good slate procedures
- 2022-05-08 18:08:49下载
- 积分:1
-
interface for IBM s TCP_IP
interface for IBM s TCP_IP
- 2023-03-18 11:00:03下载
- 积分:1
-
A Delphi history manager for self use only.Compiled under Delphi 2007 and VCLSki...
这是本人写的一个简单的Delphi打开历史文件清理软件,现在Delphi 2010已经有了这个功能了,不过如果你机器上装了多个的版本,不妨还是可以做为一个小工具使用的。编译此工程需要Delphi2007及VCLSkin5.4。如果没有vclskin,则打开工程时,可以把Tskindata组件删除。-A Delphi history manager for self use only.Compiled under Delphi 2007 and VCLSkin 5.4 required.If not installed vclskin components just delete TSkinData component.
- 2022-05-27 04:47:47下载
- 积分:1
-
3ds file format
一个简单的控制台应用程序,实现3ds文件的读取。
- 2022-03-25 06:03:48下载
- 积分:1
-
这是一个色子的游戏源代码,采用VISUAL C++开发的。
这是一个色子的游戏源代码,采用VISUAL C++开发的。-This is a game of bosons source code, the use of VISUAL C++ Development.
- 2022-05-06 02:41:17下载
- 积分:1
-
smartphone2003 上用evc编译的按键测试程序, api编写的
smartphone2003 上用evc编译的按键测试程序, api编写的-Smartphone2003 EVC compiler use the button test procedure, api prepared
- 2022-04-23 19:50:21下载
- 积分:1
-
0-1背包问题
给定N中物品和一个背包。物品i的重量是Wi,其价值位Vi ,背包的容量为C。问应该如何选择装入背包的物品,使得转入背包的物品的总价值为最大。
在选择物品的时候,对每种物品i只有两种选择,即装入背包或不装入背包。不能讲物品i装入多次,也不能只装入物品的一部分。因此,该问题被称为0-1背包问题。该算法中,矩阵c的大小为(m+1)×(n+1),物体的重量、价值和解向量大小都等于物体个数n,故该算法的空间复杂度为O(nm)。对物体重量、价值的初始化(算法实现略)所需时间都为n,解向量和矩阵第0行初始化时间为n,矩阵第0列初始化时间为m,对矩阵c的计算所需时间为n×m,解向量X的确定时间为n,故整个算法的时间复杂度为O(nm)。
- 2022-01-25 23:07:45下载
- 积分:1