搜索结果

找到约 93 项符合 null 的查询结果

源码 学生成绩guanli

#include<stdio.h> #include<string.h> #include<stdlib.h> #define N 100 int iNumOfStu=0; struct score   {   float math;   float english;   float computer;   }; struct student   {   int number ...
https://www.eeworm.com/dl/520138.html
查看: 52

源码 二叉树子系统

#include<stdio.h> #define TREEMAX 100 typedef struct  BT { char data; BT *lchild; BT *rchild; }BT; BT *CreateTree(); void Preorder(BT *T); void Postorder(BT *T); void Inorder(BT *T); void Leafnum(BT *T); void Nodenum(BT *T); int TreeDepth(BT *T); int count=0; void main() { BT *T=NULL; char ...
https://www.eeworm.com/dl/522520.html
查看: 93

技术资料 MIPI DSI标准手册 Specification for Display Serial Interface (DSI)

MIPI Specification for DSI 1.3,MIPI DSI标准手册 V1.3版本,手册介绍了MIPI DSI所有操作方法和建议,如LP模式,HS模式等。也包含了HS模式的数据打包方式,4lane,2lane,1lane传输方式。LP模式切换到HS模式的流程和方法。DSI协议数据包种类,如null packet,rgb packet, ycrcb packet,long data packet等。 ...
https://www.eeworm.com/dl/839171.html
下载: 5
查看: 7614