-
eluosfangkuai
用VB写的俄罗斯方块,还可以。适合初学VB的人(Tetris written using VB, you can also. Suitable for beginners who VB)
- 2009-11-23 19:12:48下载
- 积分:1
-
RD_FFT
信号处理中,对目标进行距离和速度二维FFT变换(Two-dimensional FFT transform of range and velocity)
- 2019-04-17 18:59:24下载
- 积分:1
-
小区物业管理信息系统
小区物业管理信息系统
小区物业管理信息系统
小区物业管理信息系统
-ddd
- 2022-07-25 07:16:05下载
- 积分:1
-
马的遍历算法 实现马的遍历问题 使用C语言编写 如果不好请大家原谅...
马的遍历算法 实现马的遍历问题 使用C语言编写 如果不好请大家原谅-Ma Algorithm Ergodic problems using C language, if you will forgive bad
- 2022-05-14 01:19:38下载
- 积分:1
-
ExcelTool
底层使用NPIO操作Excel,对NPOI进一步封装(The underlying uses NPIO to manipulate Excel to further encapsulate NPOI)
- 2019-04-26 10:04:27下载
- 积分:1
-
测试按钮,有美化,透明等,仅供参考,希望有名人是参考
测试按钮,有美化,透明等,仅供参考,希望有名人是参考-BUTTON,a glass button,in the c#
- 2022-08-11 04:26:52下载
- 积分:1
-
基于线性矩阵不等式理论对网络控制系统的控制器设计及方法进行了详细阐述,并进行了仿真试验,验证了所提出的方法的有效性。...
基于线性矩阵不等式理论对网络控制系统的控制器设计及方法进行了详细阐述,并进行了仿真试验,验证了所提出的方法的有效性。-Based on linear matrix inequalities theory of networked control systems with controller design and methods in detail, and carried out a simulation test to verify the proposed method is effective.
- 2022-01-27 21:23:12下载
- 积分:1
-
hing_v32
毕设内容,高光谱图像基本处理,模拟数据分析处理的过程,包括主成分分析、因子分析、贝叶斯分析。( Complete set content, basic hyperspectral image processing, Analog data analysis processing, Including principal component analysis, factor analysis, Bayesian analysis.)
- 2017-03-06 17:01:30下载
- 积分:1
-
运行环境 TC2.0 w,s,a,d控制方向, 逗号和句号控制力量,空格发杆 本来还可用鼠标控制,因为要用一个"mouse.h",所以去掉了...
运行环境 TC2.0 w,s,a,d控制方向, 逗号和句号控制力量,空格发杆 本来还可用鼠标控制,因为要用一个"mouse.h",所以去掉了-runtime environment WITH TC 2.0 w, s, a, d to control direction, the comma and full stop controlling forces, space-could have also been made with the mouse control, because we are a "mouse.h", removed the
- 2022-03-19 10:00:22下载
- 积分:1
-
火车订票系统
应用背景用C语言写的火车订票系统,对于C语言学习者学习链表有极大的帮助,内含测试文件供测试。。。。。。。。。。。。关键技术/*定义存储火车信息的结构体*/
struct train
{
char num[10];/*列车号*/
char city[10];/*目的城市*/
char takeoffTime[10];/*发车时间*/
char receiveTime[10];/*到达时间*/
int price;/*票价*/
int bookNum ;/*票数*/
};
/*订票人的信息*/
struct man
{
char num[10];/*ID*/
char name[10];/*姓名*/
int bookNum ;/*需求的票数*/
};
/*定义火车信息链表的结点结构*/
typedef struct node
{
struct train data ;
struct node * next ;
}Node,*Link ;
/*定义订票人链表的结点结构*/
typedef struct people
{
struct man data ;
struct people*next ;
}bookMan,*bookManLink ;
- 2022-02-01 04:42:30下载
- 积分:1