-
Prim算法完整实现代码
用Prim算法求无向图的最小生成树
Prim算法完整实现代码
用Prim算法求无向图的最小生成树
-Prim algorithm to achieve a complete code with Prim algorithm try to map the minimum spanning tree
- 2023-03-18 20:15:04下载
- 积分:1
-
C# 泛型列表List用法示例
C# 泛型列表List用法示例,从给出的人员名单中,过滤人员名称中以"科"结束的序列,遍历查询结果。
private void Frm_Main_Load(object sender, EventArgs e)
{
List People = new List{//创建人员列表
new Person(1,"王*科"),
new Person(2,"王*科"),
new Person(3,"赵*东")};
var query = from p in People//过滤人员名称中以"科"结束的序列
where p.Name.EndsWith("科")
select new
{
人员ID = p.ID,
人员姓名 = p.Name
};
foreach (var item in query)//遍历查询结果
{
label1.Text += item + "
";
}
}
}
public class Person
{
public Person(int id, string name)
{
this.ID = id;
this.Name = name;
}
public int ID { get; set; }//人员ID
public string Name { get; set; }//人员姓名
}
- 2023-01-08 20:45:03下载
- 积分:1
-
nulNewton
这是一个用matlab编写的牛顿法源代码,比较简单的无约束方程。牛顿法是求非线性方程(组)零点的一种重要的迭代法,又称牛顿-拉弗森法或切线法。(This is a Newton method source code written in matlab, a relatively simple unconstrained equation. Newton method is an important iteration method for finding zeros of non-linear equations, also known as Newton-Lafferson method or tangent method.)
- 2020-06-25 08:40:02下载
- 积分:1
-
平面阵波束形成
说明: 平面阵波束形成的程序,可以正常运行。阵列形式可以调节(The code is designed for beamforming based on planar array)
- 2019-10-19 19:08:48下载
- 积分:1
-
Anthill是一个确保受控建造过程和促进在组织内部共享知识的工具。Anthill在每一次建造之前从项目最新版本的源文件库中借出文件,并在每一次建造之后用一个唯
Anthill是一个确保受控建造过程和促进在组织内部共享知识的工具。Anthill在每一次建造之前从项目最新版本的源文件库中借出文件,并在每一次建造之后用一个唯一的版本号标记源文件库。它支持的库适配器有:CVS (Concurrent Versions System), Visual Source Safe, Perforce, PVCS, StarTeam, MKSIntegrity, 和 FileSystem. 来源:http://freshmeat.net/projects/ant8/?topic_id=45%2C822%2C52%2C46%2C861 -Anthill is guarantees is controlled the construction process and
the promotion in the organization interior sharing knowledge tool.
Anthill before each construction loans the document from in the
project newest edition source document storehouse, and after each
construction marks the source document storehouse with an only edition
number. It supports the storehouse adapter includes: CVS (Concurrent
Versions System), Visual Source Safe, Perforce, PVCS, StarTeam,
MKSIntegrity, with FileSystem. origin:
Http://freshmeat.net/projects/ant8/? Topic_id=45,822,52,46,861
- 2022-01-27 11:39:50下载
- 积分:1
-
fenshutongji
随机产生20个学生的成绩,统计各分数段人数。(Random generation 20 students scores, the number of each band statistics. Display score on the picture1 show that the statistical results in
The picture1 display.
)
- 2012-04-19 14:05:39下载
- 积分:1
-
LPA算法
标签传播算法 用于社区发现 带简单的测试用例(LP algorithm for community detection with simple test cases)
- 2018-08-16 16:08:24下载
- 积分:1
-
File monitoring
说明: 这是一款对于U盘的文件监视程序,用于学习与交流(This is a file surveillance program for U disk, which is used for learning and communication.)
- 2019-02-13 23:02:02下载
- 积分:1
-
C-W
使用CW方程,使用最小能量,采用脉冲推力,实现在一天内两航天器的交会对接。本质上就是一个交会轨道优化问题,由给定的条件优化选取设计变量,使目标函数得到最优值。(Using the CW equation, use the minimum energy, the use of pulse thrust, to achieve in a day two spacecraft rendezvous and docking. Is essentially an intersection orbit optimization problem, by the given conditions to optimize the selection of design variables, so that the objective function to get the optimal value.)
- 2017-05-11 20:05:29下载
- 积分:1
-
[BOTNET-PHP]-Zunkerbot-1.4.5-src
说明: Bontnet Source Code in php mysql delphi
- 2019-03-20 02:21:17下载
- 积分:1