-
migong
说明: 迷宫程序,不是很好看,不过适合初学者。用VC++编写的,看看吧。(Maze procedure, not a good look, but suitable for beginners. With VC++ Prepared to see it.)
- 2008-10-16 20:26:00下载
- 积分:1
-
线性素筛 欧拉函数 区间筛素数
能够在线性时间内筛出素数,并且对于计算欧拉函数值(it is an algorithm,it can solve the euler problem, and it is very fast)
- 2018-10-24 18:32:40下载
- 积分:1
-
用汉宁窗函数 的频谱分析源代码
减少频谱泄漏,通常在采样后对信号加窗。在电机故障诊断领域,需同时考虑频率分辨率和频谱泄漏。应用最广泛的窗函数是汉宁窗。(To reduce the spectrum leakage, a window is usually added to the signal after sampling. In the field of motor fault diagnosis, frequency resolution and spectrum leakage should be considered at the same time. The window function is the most widely used Hanning window.)
- 2020-08-15 16:18:27下载
- 积分:1
-
温湿度上位机
qt 温湿度上位机client的例子,可以直接下载使用,对于初学者很有用。(Qt Temperature and humidity PC example, can be downloaded and used directly, useful for beginners.)
- 2019-03-18 16:05:48下载
- 积分: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
-
MFC Acess数据统计
说明: 使用MFC访问Access数据库的案例.(Access cases using MFC.)
- 2020-11-01 11:39:54下载
- 积分:1
-
unicode码转换 unicode码转换
unicode码转换 unicode码转换 -unicode conversion unicode code code code-switching unicode conversion unicode code-switching
- 2022-02-03 22:58:56下载
- 积分:1
-
This program is my learning in Vc++ is used to practice his own things to learn....
本程序是本人在学习Vc++中,用来练习自己所学的东西。这个程序主要知识点是关闭系统,创建定义按钮。-This program is my learning in Vc++ is used to practice his own things to learn. Main knowledge this program is shut down the system, create a custom button.
- 2022-07-01 02:52:13下载
- 积分:1
-
电能质量复合扰动程序
说明: 产生电压暂降,暂升,波动,振荡,谐波等多种电能质量单一和复合扰动问题(Compound disturbance of power quality)
- 2021-05-13 03:30:03下载
- 积分:1
-
C#科学计算器代码
C#多功能科学计算器附完整源码,已经超越了数字计算哦,除了数字运算外,还可以实现表达式计算、角度和弧度计算、平方根、正切之类的运算,功能挺丰富。代码中包括了制定运算符及其特性(优先级和单双目)的运算符表、给运算表达式分块(三角函数...算术运算符等),再根据其返回值来检验其属于哪类错误,用于存放制定好的运算符及其特性(优先级和单双目)的运算符表,其初始化在方法Initialize()中。
- 2022-10-04 19:05:03下载
- 积分:1