-
图的遍历
基本要求:以邻接表为存储结构,实现连通无向图的深度优先和广度优先遍历。以用户指定的结点为起点,分别输出每种遍历下的结点访问序列和相应生成树的边集。(Basic requirements: the adjacency list is used as storage structure to realize the depth first and breadth first traversal of connected undirected graph. Starting from user specified nodes, we output each node access sequence and the corresponding edge set of corresponding spanning tree respectively.)
- 2018-06-05 09:18:27下载
- 积分:1
-
747
这是波音747飞机的模型,适合于初学折,适用于三维软件开发,可应用于flightgear(This is the Boeing 747 aircraft model, suitable for beginners fold, suitable for three-dimensional software development, can be applied to flightgear)
- 2017-03-08 06:29:47下载
- 积分:1
-
C# 使用Binding对象读取图像字段
C# 数据库操作实例,使用Binding对象从数据库中读取图像字段,同时还演示了从SQL Server数据库读取图像,向SQL Server数据库添加图像。
向SQL Server数据库添加图像主要是在SQL Server Northwind数据库中创建图像数据表,添加图像数据参数值,从SQL Server数据库读取图像的代码如下:
private void button2_Click(object sender, EventArgs e)
{//从SQL Server数据库读取图像
var MySQL = "Select * From MyImageTable ";
var MyConnection = new System.Data.SqlClient.SqlConnection("Data Source=.SQLEXPRESS;Initial Catalog=Northwind;Integrated Security=True");
var MySet = new DataSet();
var MyAdapter = new System.Data.SqlClient.SqlDataAdapter(MySQL, MyConnection);
MyAdapter.Fill(MySet);
byte[] MyBytes = (byte[])MySet.Tables[0].Rows[0]["ImageData"];
var MyStream = new System.IO.MemoryStream(MyBytes);
this.pictureBox1.Image = Image.FromStream(MyStream);
}
- 2022-01-25 16:04:56下载
- 积分:1
-
SFS相关所有
利用SFS算法实现3D图像重建,附带有图片实现(3D Image Reconstruction Using SFS Algorithms)
- 2019-04-25 10:34:23下载
- 积分:1
-
蒙特卡罗算法的实现,蒙特卡罗算法是进行根据概率进行预测的方法,在众多领域广泛应用...
蒙特卡罗算法的实现,蒙特卡罗算法是进行根据概率进行预测的方法,在众多领域广泛应用-Monte Carlo algorithm, Monte Carlo algorithm is a prediction based on probability approach, widely used in many fields
- 2022-01-26 05:14:32下载
- 积分:1
-
SPWM 德克萨斯贮存
此示例演示如何以模型使用正弦脉宽调制 (SPWM) 的三相电压源变流器。此调制方案比较与更高频率的重复三角波的基准正弦波产生的脉冲。该模型可以用于支持的合适的值选择 L、 C 和脉冲调制方案参数。
- 2022-02-25 16:25:16下载
- 积分:1
-
BOSCHESP
博世ESP很好的学习材料,对进入ESP行业很有帮助。(helpful knowledge of Bosch ESP. Not available on website)
- 2016-12-06 14:48:48下载
- 积分:1
-
基于单片机的智能计算器
基于单片机的智能计算器,基于89c51单片机的基于单片机的智能计算器,基于单片机的智能计算器,基于89c51单片机的基于单片机的智能计算器,
- 2023-06-24 04:00:03下载
- 积分:1
-
1
说明: 倒立摆数学模型及分析及建模叙述,主要是过程(Pendulum mathematical model and analysis)
- 2014-11-26 22:29:14下载
- 积分:1
-
yinhangmoni
这是一个简单的银行模拟系统
1、 客户的到达时间随机
2、 客户需要处理的业务随机(不同业务处理的平均长度不同,例如:取款时间较短,开户和销户时间较长)
3、 处理客户业务所需时间随机(在一定范围内)
4、 使用文本文件记录每个客户到达时间、业务处理时间、业务结束时间
5、 动态显示(刷新时间可调)目前每个窗口累计处理客户数量、等待人数,每个窗口的平均业务处理时间,不同业务类型业务的累计办理量。
(This is a simple bank simulation system
1 customer arrival time random
2, customers need to deal with the business of random (the average length of the different business processes, such as: the withdrawal shorter, longer to open an account and cancel the account)
3, the time required to deal with customer service random (within certain limits)
4, using a text file to record each customer arrival time, business processing time, the business end of time
5 dynamically display (refresh time is adjustable) each window is accumulated to handle the number of customers waiting for the number the average business processing time of each window, different type of business operations total for the amount.)
- 2012-11-22 00:08:18下载
- 积分:1