-
构造二叉树,同时实现二叉树的插入和删除。
构造二叉树,同时实现二叉树的插入和删除。-Binary tree structure
- 2022-03-31 08:17:10下载
- 积分:1
-
treelistview 扩展,具有绑定数据等功能,是一个相对比较经典的控件扩展!...
treelistview 扩展,具有绑定数据等功能,是一个相对比较经典的控件扩展!-treelistview expansion, with bundled data and other functions, is a relatively classic controller expansion.
- 2022-02-12 00:59:18下载
- 积分:1
-
00819
软件弹窗添加器源码程序,置入汇编代码,调用API函数向软件添加弹出窗口。(Software pop feeder source program, into assembly code , call the API function to add pop-ups to software.)
- 2016-12-08 10:08:04下载
- 积分:1
-
EM78P153设计的PWM源代码,里面有详细的描述。
EM78P153用PWM设计的源代码,其中有详细的说明。
- 2022-08-03 05:00:27下载
- 积分:1
-
Code for initializing HIWIN motion controller PCI
4P
Code for initializing HIWIN motion controller PCI
4P
- 2022-05-29 20:31:15下载
- 积分:1
-
compilation series operating procedures
汇编串操作的程序-compilation series operating procedures
- 2023-01-26 21:25:03下载
- 积分:1
-
汇编写的贪吃蛇游戏,在轻松汇编里编译通过,游戏能实现贪吃蛇的基本游戏功能...
汇编写的贪吃蛇游戏,在轻松汇编里编译通过,游戏能实现贪吃蛇的基本游戏功能-Compilation of written Snake game, where the compiler to compile in a relaxed through the game to achieve the basic game features Snake
- 2022-01-26 06:02:08下载
- 积分:1
-
OMAP3530的文档和设计指南,ARM内核,TI的扩展。
Omap3530 documentation and design guide, ARM core, TI extensions.
- 2022-08-08 13:26:19下载
- 积分:1
-
C# 由离散点到等高线分布
应用背景
程序可以根据让用户自定义输入生成随机点数量、设定X范围、设定Y范围、设定Z范围来自定义生成一系列随机点数量,并根据用户设定的周围搜索点数量来进行规则格网的插值,然后根据输入的等高线间距进行等高线的生成。
关键技术在图层显示上,可以显示DEM数据、随机点数据、等高线数据,并根据用户自定义的图层进行显示和叠加。程序可以修改等高距进行显示。
- 2022-03-30 05:27:09下载
- 积分:1
-
vb 分形树
Dim xs As Integer
Dim ys As Integer
Dim alph As Single
Dim lng As Single
Dim m As Integer
Const PI As Single = 3.14159265
Private Function tree(x As Integer, y As Integer, angle As Single, length As Single, n As Integer)
Dim x0 As Integer
Dim y0 As Integer
Dim alpha As Single
Dim beita As Single
Dim leng As Single
BackColor = vbWhite
If n > 0 Then
x0 = x + Cos(angle) * length
y0 = y - Sin(angle) * length
picture1.Line (x, y)-(x0, y0), vbbrake
alpha = angle - PI / 8
beita = angle + PI / 8
leng = 2 * length / 3
Call tree(x0, y0, alpha, leng, n - 1)
&nbs
- 2022-01-24 19:06:52下载
- 积分:1