-
冒泡法,快速排序等排序的实现
冒泡法,快速排序等排序的实现-Bubble, rapid sequencing order as the realization
- 2022-01-30 19:30:24下载
- 积分:1
-
VB从网络批量下载文件
VB从网络批量下载文件,本程序主要是参考了别人的代码,好像是来自PSC。
用途:批量下载程序。用于批量下载网络上的文件。
这里主要是用于下载中山大学汇编视频的文件。
批量下载文件说明:打开的下载列表文件 每一行就是一个下载文件的URL,不要有其它的字符。如果Inet已经停止下载,就代表已经完成一个下载,然后继续下载其它文件。
- 2022-05-21 19:50:10下载
- 积分:1
-
Operating : "w" "s" "a" and "d" from top...
操作:从上到下的“w”、“s”、“a”和“d”都是关于胜利的条件:rz控件已经吞噬了所有的意义,超级简单而愚蠢的游戏机是用win32制作的
- 2023-04-06 20:50:03下载
- 积分:1
-
micro avr program
你好,朋友,我写的13个程序为微控制器avr与代码viosion完整的代码测试和附加十六进制文件。你可以使用它
- 2022-01-25 18:36:31下载
- 积分:1
-
本算法使用分治法求解最近点对问题。事先用O(nlogn)时间对x坐标进行排序,使得所有的点是按x坐标从小到大排好序的(x坐标相同时y坐标小的排前),然后取下标小...
本算法使用分治法求解最近点对问题。事先用O(nlogn)时间对x坐标进行排序,使得所有的点是按x坐标从小到大排好序的(x坐标相同时y坐标小的排前),然后取下标小于n/2属于左边的点集PL,取下标大于n/2属于右边的点集PR,即用O(1)时间就可以将规模为n的问题分解为两个规模为n/2的、同类型的子问题。分割完毕之后就可以采用分治法,分别求出PL和PR中的最近点对,最终通过递归实现。-This algorithm uses divide and conquer to solve the problem closest point. Prior to use O (nlogn) time to sort the x coordinate so that all points are based on x coordinates from small to large sorted (x coordinates with the same y coordinates of the small, the top), and then remove the standard is less than n/2 the set of points belonging to the left PL, remove the standard is greater than n/2 set of points belonging to the right of PR, that is to use O (1) time can be the problem size n divided into two size n/2, the same type The sub-problems. Segmentation can be used after completion of sub-rule method, respectively, find the PL and PR in the last points and eventually through the recursion.
- 2022-01-25 16:01:13下载
- 积分:1
-
Doude Zhu little game with computer chess, the program is simple.
斗地主的小游戏,可以与电脑进行对弈,程序比较简单。-Doude Zhu little game with computer chess, the program is simple.
- 2022-05-30 04:23:25下载
- 积分:1
-
手机上网越来越成为一种时尚。其关键技术-WAP也越来越受到人们的关注。此文档以问答的方式解答了WAP技术在应用中的难题,对WAP网页开发有很大的帮助。...
手机上网越来越成为一种时尚。其关键技术-WAP也越来越受到人们的关注。此文档以问答的方式解答了WAP技术在应用中的难题,对WAP网页开发有很大的帮助。-mobile Internet is increasingly becoming a trend. Its key technology- WAP also attracting increasing attention.WAPWAP
- 2023-03-06 08:05:03下载
- 积分:1
-
C# 创建泛型字典的例子
C# 创建泛型字典,为泛型字典添加3个元素,按键值对泛型字典进行排序操作。
Dictionary users = new Dictionary();//创建泛型字典
users.Add(3, new UserInfo(1, "滕*敏", "01"));//为泛型字典添加3个元素
users.Add(2, new UserInfo(2, "滕*娜", "02"));
users.Add(1, new UserInfo(3, "X家兴", "03"));
//按键值对泛型字典进行排序操作
var query = from item in users
where item.Value.UserName.CompareTo("滕*") > 0//用户名大于"滕立"
orderby item.Key
select item;
label1.Text = "显示查询结果:
";
foreach (var item in query)//显示查询结果
- 2022-08-02 11:59:24下载
- 积分:1
-
推箱子来源于日本游戏,最初是DOS下的,现在由作者升级成WINDOWS版本。希望大家喜欢。...
推箱子来源于日本游戏,最初是DOS下的,现在由作者升级成WINDOWS版本。希望大家喜欢。-game magazines from Japan, initially under the DOS, and now from the author escalated into Windows version. Hope you like them.
- 2022-10-18 01:20:03下载
- 积分:1
-
显示面板程序!用于电力系统的人机显示,可显示三相电流,电压.有功无功等...
显示面板程序!用于电力系统的人机显示,可显示三相电流,电压.有功无功等-Display panel procedures! For man-machine power system show that shows the three-phase current, voltage. Active and reactive power, etc.
- 2022-05-15 18:39:05下载
- 积分:1