-
基于节点临近感知与路径综合评估的虚拟网络映射算法 Matlab
说明: 基于节点临近感知与路径综合评估的虚拟网络映射算法,可直接运行(The virtual network mapping algorithm based on node proximity perception and path comprehensive evaluation can be run directly)
- 2020-07-27 09:38:05下载
- 积分:1
-
bin
用于宽带雷克子波中函数的p,q值的变换程序,俞氏子波p,q变换子波主频以及带宽变化(For the transformation program of p and q values of functions in broadband rec wavelet, yu shi wavelet p,q transform wavelet main frequency and bandwidth change)
- 2018-10-05 20:35:13下载
- 积分:1
-
dfs 深度优先搜索!这是走迷宫的基本算法。用广义表建立迷宫,用邻接表建立图,用dfs搜索,许多大学的数据结构作业...
dfs 深度优先搜索!这是走迷宫的基本算法。用广义表建立迷宫,用邻接表建立图,用dfs搜索,许多大学的数据结构作业-dfs depth-first search! Maze This is the basic algorithm. Generalized Table established maze, with the establishment of the adjacent table map, with dfs search, the University of many data structures operations
- 2023-01-31 19:45:04下载
- 积分:1
-
绘制震源机制解
说明: 通过matlab输入走向倾向倾角三个参数可以绘制震源机制解(Source mechanism solution can be drawn by inputting three parameters of strike dip angle in MATLAB)
- 2019-10-09 10:51:22下载
- 积分:1
-
modian-ziliao
康老师模电全套课件,是学习模电的好资料,希望能给需要的人帮助(Kang teacher-mode full courseware, learning good information-mode, hoping to give those who need help)
- 2014-04-26 17:27:39下载
- 积分: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
-
GPS standard surface fitting computer program
GPS无约束平差后进行水准面拟合计算的程序-GPS standard surface fitting computer program
- 2023-08-05 02:10:02下载
- 积分:1
-
Greedy-Snake
基于NIOS II的贪吃蛇游戏设计,有三种模式:普通模式、障碍物模式、双蛇模式(Greedy Snake)
- 2013-07-12 16:27:55下载
- 积分:1
-
SmartMonkey
说明: 一个monkey test的自动工具,用来进行软件界面的无计划测试(A monkey test of the automated tools used for software interface of unplanned test)
- 2008-09-17 16:58:19下载
- 积分:1
-
Cpp
Cpp笔记
1 我们学的是符合ANSI规范的标准Cpp 有可移植性。
2 Cpp严格区分大小写,变量命名只能使用字母,数字,或下划线,第一个字母必须使用字母或下划线(Cpp Notes 1 We studied norms in line with the ANSI standard Cpp,there is portability. 2 Cpp strictly case-sensitive, variable names can only use letters, numbers, or underscore, the first letter or letters must be underlined)
- 2009-05-19 11:29:14下载
- 积分:1