-
深入理解c指针
一本深入讲述c语言指针的书籍,用于入门及深入探究。(An in-depth book about C language pointer, for entry and in-depth exploration.)
- 2018-06-14 12:58:25下载
- 积分:1
-
SVD
用于构造任意矩阵的奇异值分解算法,VC版(Used to construct the arbitrary matrix singular value decomposition algorithm, VC version)
- 2007-10-22 15:34:15下载
- 积分:1
-
C# 按照扩展名分组文件
C# 按照扩展名分组文件,按照文件类型的不同,对文件进行归类显示,分类清淅便于查看,主要是使用MyFile中的对象和方法实现,核心的功能代码如下:
private void ShowGroupFile(IEnumerable> MyQueryGroup)
{
this.listBox1.Items.Clear();
foreach (var MyFileGroup in MyQueryGroup)
{
this.listBox1.Items.Add("包含" + MyFileGroup.Key + "扩展名的文件如下:");
foreach (var MyFileInfo in MyFileGroup)
{
this.listBox1.Items.Add(MyFileInfo.Name);
}
this.listBox1.Items.Add("");
}
}
static IEnumerable GetFiles(string MyDir)
{
if (!System.IO.Directory.Exists(MyDir))
throw new System.IO.DirectoryNotFoundException();
string[] MyFileNames = null;
List MyFiles = new List();
//查找指定目录下的所有子目录中的所有文件
//MyFileNames = System.IO.Directory.GetFiles(MyDir, "*.*", System.IO.SearchOption.AllDirectories);
MyFileNames = System.IO.Directory.GetFiles(MyDir);
foreach (string MyName in MyFileNames)
{
MyFiles.Add(new System.IO.FileInfo(MyName));
}
return MyFiles;
}
- 2022-12-28 08:15:04下载
- 积分:1
-
基于C#的skyline二次开发案例
基于C#语言的skyline二次开发实例(Examples of Development of Skyline Based on C#)
- 2020-06-24 08:20:02下载
- 积分:1
-
ExcelReadWriter-原始
C# Excel操作类 读取数据 保存数据(C# Excel operation class reads data and saves data)
- 2020-06-20 02:00:02下载
- 积分:1
-
按需距离矢量路由协议
Aodv的修改版本协议。这个代码帮助您实现Aodv协议。你可以把它用于你的学术和研究目的。这将帮助您理解基本的Aodv协议代码。
- 2022-08-22 08:07:10下载
- 积分:1
-
Qt五子棋游戏
传统的五子棋小游戏,没有做界面设计,很丑,不过大家看逻辑就好了,哈哈 写的逻辑还是很简单的。把这个游戏改成局域网对决的游戏后 会继续上传的最近很闲 想做无聊小游戏的集合 大家有想法可以交流一下
- 2023-03-03 22:55:07下载
- 积分:1
-
Velocity
说明: 利用C语言实现边界条件的更改随fluent软件进行二次开发(Using C language to realize the change of boundary condition)
- 2019-10-26 16:31:58下载
- 积分:1
-
opnet
里面是一些自己总结的opnet的建模步骤,还有就是opnet里面常用英文单词的汉语解释。(Which are summarized opnet own modeling steps, there is the opnet which used English words explained in Chinese.)
- 2010-06-16 09:02:12下载
- 积分:1
-
qt使用实例
qt的各种类使用实例,包含hello world实现例子。qt线程使用实例。qt实现基本的对话框实例。
- 2023-05-13 21:35:07下载
- 积分:1