-
Kruskal
kruskal 算法的c++实现,你可以很好的使用,数据结构的只是看它(kruskal it maybe useful to,you can see it)
- 2010-01-05 14:33:17下载
- 积分:1
-
proteus-keil-danpianji
学习单片机 最好的视频教程
keil 与 proteus 联机的 视频教程
视频讲解了:
1 proteus 的入门运用
2 keil C程序的入门运用
3 联机的运用
(The best video tutorials to learn microcontroller keil and proteus online video tutorials video explained: 1 proteus entry using 2 keil C the use of three-line entry procedures for the use of)
- 2020-06-25 23:00:02下载
- 积分:1
-
00097567
动画启动界面,VC++经典编程源码,很好的参考资料。(Animation interface to start, the classic VC++ programming source code, a good reference.)
- 2013-11-15 09:29:09下载
- 积分:1
-
C# 根据路径使用DirectoryInfo创建文件夹
C# 根据路径创建文件夹,具体来说是使用DirectoryInfo对象的Create方法创建文件夹【目录】。如果用户未指定路径,则在程序当前目录下创建文件夹,若指定路径,则在指定的路径层级下创建目录。
在创建开始前,对用户输入的目录名或路径格式进行验证,然后判断该路径下是否存在该目录,最后创建文件夹。下面是相关的代码:
if (textBox1.Text == string.Empty)//判断输入的文件夹名称是否为空
{
MessageBox.Show("文件夹名称不能为空!");
}
else
{
DirectoryInfo dinfo = new DirectoryInfo(textBox1.Text);//实例化DirectoryInfo类对象
if (dinfo.Exists)//使用DirectoryInfo对象的Exists属性判断要创建的文件夹是否存在
{
MessageBox.Show("该文件夹已经存在");
}
else
{
dinfo.Create();//使用DirectoryInfo对象的Create方法创建文件夹
}
}
- 2023-02-21 06:20:03下载
- 积分:1
-
five
五子棋的小程序,考虑了先手双三禁手的情况可以人和电脑,人和人,步数有统计,开始可以选择白旗或者黑棋(Gobang a small program, taking into account firstly the three pairs of hands can be cut and the computer, and the people, a few steps there are statistics, can choose to start a white flag or Black)
- 2010-02-02 11:23:10下载
- 积分:1
-
2-A1电梯模拟调度
说明: 数据结构课程设计 电梯调度算法的实现,实现简单,可直接使用(Elevator is defined in this program.You can use it directly;)
- 2018-12-23 15:44:24下载
- 积分:1
-
C#图书管理系统源代码适合新手
适合新人练手的图书管理系统源代码,附有数据库加载文件,但需要自行添加与完善,代码比较全,登陆帐号与密码都是admin,只有超级管理员跟管理员
- 2022-02-05 03:50:34下载
- 积分:1
-
CATIA-CAA-GenerateImage
CATIA软件的二次开发,通过CAA开发创建图片(Generate Image in CATIA software by CAA)
- 2020-11-09 14:09:46下载
- 积分:1
-
巅峰版决战源代码
巅峰源代码,适合8.0-20.很不错的代码
决战AccessoriUpTable.cpp
....AccessoriUpTable.h
....AccessoriUpTableSet.cpp
....AccessoriUpTableSet.h
....AddEventItemTableSet.cpp
&n
- 2022-02-25 20:19:02下载
- 积分:1
-
Matlab-VisualC
vc与matlab混合编程应用的书籍,教你怎么用得案例(vc mixed with the matlab programming applications, books, teach you how to get the case with)
- 2011-10-09 22:14:03下载
- 积分:1