-
对ZBTSRAM接口的详细介绍
对学习ZBTSRAM接口的设计有一定帮助
对ZBTSRAM接口的详细介绍
对学习ZBTSRAM接口的设计有一定帮助-ZBTSRAM interface for a detailed introduction to learning ZBTSRAM interface design has a certain extent, help
- 2022-06-27 19:22:13下载
- 积分:1
-
数值分析课程上机 拉格朗日插值多项式 插值多项式存在唯一性 在次数不超过N的多项式集合Hn中 满足条件的插值多项式Ln(x)^Hn 是唯一存在的! 牛顿插值 三...
数值分析课程上机 拉格朗日插值多项式 插值多项式存在唯一性 在次数不超过N的多项式集合Hn中 满足条件的插值多项式Ln(x)^Hn 是唯一存在的! 牛顿插值 三色~-numerical analysis courses on the plane Lagrange polynomial interpolation polynomial interpolation existence and uniqueness to the number not exceeding N polynomial Hn pool to meet the conditions of polynomial interpolation Ln (x) ^ Hn is the only exists! Newton"s three color ~
- 2022-08-09 11:34:55下载
- 积分:1
-
一个linux论坛
一个linux论坛- A linux forum
- 2022-03-13 22:33:26下载
- 积分:1
-
3DS MAX源了,很好
一个3ds max源码,挺不错得,可以用来编辑和用来做示范-3ds max a source, a very good
- 2022-01-25 22:35:32下载
- 积分:1
-
their game preparation procedures for the mine, which is part of the main progra...
自己编写的扫雷游戏程序,这是其中的主程序部分-their game preparation procedures for the mine, which is part of the main program
- 2023-03-03 06:30:03下载
- 积分:1
-
ASN1_BER_DER编码子集入门指南,指导asn1的开发
ASN1_BER_DER编码子集入门指南,指导asn1的开发-ASN1_BER_DER coding subset portal guide to the development asn1
- 2022-11-11 03:00:04下载
- 积分:1
-
正弦波的VHDL代码,使用Xilinx logibox产生正弦波输出
sine wave vhdl code that generates sine wave output using logibox in xilinx
- 2022-08-14 12:51:09下载
- 积分:1
-
由网络搜集供大家学习使用如果侵占请自行删除
由网络搜集供大家学习使用如果侵占请自行删除-collected by the network for everyone to learn how to use their own if invaded please delete
- 2023-05-31 02:50:04下载
- 积分:1
-
CSS 视频教程 对初学者很有帮助
视频教程讲的很详细
CSS 视频教程 对初学者很有帮助
视频教程讲的很详细-CSS Video Tutorial Video tutorial for beginners helpful talking about in great detail
- 2022-07-04 13:35:01下载
- 积分: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