-
PROTEL封装
PROTEL封装-PROTEL Packaging
- 2023-05-19 16:15:04下载
- 积分:1
-
本人编写的有关军队营房工作的管理系统,仅供学习使用。
本人编写的有关军队营房工作的管理系统,仅供学习使用。-prepared by the army barracks, work management system, is for studying.
- 2022-01-26 08:06:38下载
- 积分:1
-
一个C++的FFT算法的编码…
its a c++ coding for fft algorithm...
- 2022-04-27 18:05:12下载
- 积分:1
-
颜色拾取器,能拾取当前鼠标的网页所需要色彩值。非常好用,希望大家喜欢!...
颜色拾取器,能拾取当前鼠标的网页所需要色彩值。非常好用,希望大家喜欢!-color picking device that can pick up the mouse"s current website needed color value. Very good, hope you like them!
- 2022-03-30 21:57:39下载
- 积分:1
-
JPEG格式说明,和解码流程介绍,对移植JPEG的解码CODE很有帮助。...
JPEG格式说明,和解码流程介绍,对移植JPEG的解码CODE很有帮助。-JPEG format, and decoding flow introduction of transplantation JPEG decoder CODE helpful.
- 2022-11-18 11:10:03下载
- 积分:1
-
用RationRose开发工具来开发J2EE程序示例,很难得的哦!
用RationRose开发工具来开发J2EE程序示例,很难得的哦!-RationRose use development tools for developing J2EE procedures example, the difficult Oh!
- 2022-01-26 00:12:08下载
- 积分:1
-
这是一个字的动画,它的字是动的,给人的感觉是字不是字拉,而是一个个的有生命体...
这是一个字的动画,它的字是动的,给人的感觉是字不是字拉,而是一个个的有生命体-This is a character animation, the characters it is moving and gives the impression that the word is not the words, but out of a life-
- 2023-04-22 04:35:03下载
- 积分:1
-
这是一个合成地震记录程序,对从事体育的学生。
这是一个地震合成记录程序,该程序对搞石油和地质的同学来说帮助很大-This is a synthetic seismic record program, which pairs of students engaged in petroleum and geology is of great help to
- 2022-03-20 10:05:18下载
- 积分:1
-
wildcard matching procedures, detailed see Notes
通配符匹配程序,详细见注释-wildcard matching procedures, detailed see Notes
- 2022-03-21 17:48:33下载
- 积分: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