-
邮政树成员的样本比较建议
ZIP树成员的更多推荐示例
- 2022-02-15 05:19:03下载
- 积分:1
-
coco2dx游戏引擎实现加减法练练看
项目使用coco2dx游戏引擎实现的加减法练练看,类似于水果练练看,通过完成加法和减法练习来达到消除的目的,游戏使用C++语言编写。
- 2023-07-18 14:15:07下载
- 积分:1
-
有关复杂网络研究的一篇博士论文,结合具体的复杂网络对象实例,系统研究复杂网络的理论和实践,并且研究复杂网络原理在Ad hoc计算机网络中的应用。选择了汉语词组网...
有关复杂网络研究的一篇博士论文,结合具体的复杂网络对象实例,系统研究复杂网络的理论和实践,并且研究复杂网络原理在Ad hoc计算机网络中的应用。选择了汉语词组网络作为实际复杂网络研究对象。提出了一种推广的祸合网络理论模型。-Complex network-related research for a Ph D thesis, combined with the specific object instance of the complex network, complex network system of the theory and practice, and study the principle of complex networks in Ad hoc computer network applications. Chose the Chinese phrase networks as the actual complex network study. A promotion of the coupling model of network theory.
- 2022-08-14 23:38:49下载
- 积分: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
-
adc8535原程序
adc8535原程序-adc8535 original program
- 2022-03-14 06:44:21下载
- 积分:1
-
专家系统 :农夫过河问题的源代码 农夫过河问题.CLP
专家系统 :农夫过河问题的源代码 农夫过河问题.CLP -expert system : the farmer across the river source code farmer river issues. CLP
- 2022-12-23 05:00:03下载
- 积分:1
-
If you learned the Queueing theorem, You certainly remember the basic model, M/M...
If you learned the Queueing theorem, You certainly remember the basic model, M/M/1. This is the source code of it.
- 2023-05-17 01:50:04下载
- 积分:1
-
711_6.0 completely free version of corporate Web site management procedures
711_6.0完全免费版本企业网站管理程序
-711_6.0 completely free version of corporate Web site management procedures
- 2022-04-15 18:46:34下载
- 积分:1
-
"pictureRecreator"也是一个很适合java学习者的小游戏,这个游戏将一副大图打散成9张,然后任意挑选8张出来,让玩家通过键盘和鼠标来控制图片移动...
"pictureRecreator"也是一个很适合java学习者的小游戏,这个游戏将一副大图打散成9张,然后任意挑选8张出来,让玩家通过键盘和鼠标来控制图片移动,最后将它复原.-"pictureRecreator" is a very suitable for learners of small java games, the game will be a big map separated into nine, and then a random selection of eight out, allowing the player through the keyboard and mouse to control mobile picture, it will finally recover.
- 2022-03-15 03:45:45下载
- 积分:1
-
JSP留言本程序+代码
JSP留言本程序+代码,界面方面可用DW编辑,基于javabean技术实现,留言板带后台管理,可发送留言和管理留言,功能比较完整,用于学习JSP编程技术相当不错。留言本后台用户名是admin 密码是qipeng 如果不行,可以打开数据库修改md5的数值,环境为Tomcat6.0,如果用5.0,运行会出现乱码,因为5.0对中文的支持还是有一定的问题。
- 2022-02-03 23:29:16下载
- 积分:1