-
两个显示时间的,用java实现的小程序
两个显示时间的,用java实现的小程序-2 shows the time, using java applets to achieve
- 2022-04-10 12:08:52下载
- 积分:1
-
ARM instructions on assembly language learning good reading help for beginners
ARM汇编语言学习说明书对初学者有很好的阅读帮助
- 2023-03-02 20:00:03下载
- 积分:1
-
CiscoPacketTracer5.2_FAQ
CiscoPacketTracer5.2_FAQ-21Jul09final. its the final release-CiscoPacketTracer5.2_FAQ-21Jul09final. its the final release....
- 2022-01-26 01:01:40下载
- 积分:1
-
DSPTI C6000 ZBTRAM的使用历程,初学者必读
DSPTI C6000 ZBTRAM的使用历程,初学者必读-DSPTI C6000 ZBTRAM the use of the course, the required reading beginners
- 2022-02-18 15:02:09下载
- 积分:1
-
asp, java, html, Visual Basic programming, and other documents, are enough begin...
asp,java,html,vb等多种编程文档,足够初学都研究-asp, java, html, Visual Basic programming, and other documents, are enough beginner study
- 2022-01-30 19:03:55下载
- 积分: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
-
显示屏测试程序的源程序
显示屏测试程序的源程序-display the source code of the test procedure
- 2023-05-22 14:15:03下载
- 积分:1
-
波浪模拟udf-wave simulation
在FLUENT软件中应用VOF多相流模型建造数值波浪水槽,需要采用UDF编写源程序,设置进口速度边界条件和体积分数等。本程序可以为初学者编写相应程序提供参考和帮助,并在实际应用中得到检验。如果出口边界及其他设置、步骤合理,可得到满意的结果。
- 2022-03-23 02:28:03下载
- 积分:1
-
pc 连接nokia的手机连接库及例子。只是我连接的时候有点错误。不过这是官方提供的。我的手机是6101...
pc 连接nokia的手机连接库及例子。只是我连接的时候有点错误。不过这是官方提供的。我的手机是6101-pc to connect nokia phone to connect database
- 2023-06-26 12:50:04下载
- 积分:1
-
C# 监控Windows剪贴板程序
C# 编写的监控Windows剪贴板的小程序,这里面有计时器的相关创建方法,设置计时器间隔为1000毫秒并启动计时器,监控剪切板并判断剪贴板中是否存在文本数据,然后将剪贴板中的内容显示在richTextBox1控件中。下面的代码是本程序的核心:
private void Frm_Main_Load(object sender, EventArgs e)
{
timer1.Interval = 1000;//设置计时器间隔为1000毫秒
timer1.Start();//启动计时器
}
private void timer1_Tick(object sender, EventArgs e)
{
if (Clipboard.ContainsText())//判断剪贴板中是否存在文本数据
richTextBox1.Text = Clipboard.GetText();//将剪贴板中的内容显示在richTextBox1控件中
}
- 2023-08-14 00:35:02下载
- 积分:1