代码搜索:管脚分配

找到约 5,895 项符合「管脚分配」的源代码

代码结果 5,895
www.eeworm.com/read/180558/9302684

c algo2-1.c

/* algo2-1.c 实现算法2.1的程序 */ #include"c1.h" typedef int ElemType; #include"c2-1.h" /* 采用线性表的动态分配顺序存储结构 */ #include"bo2-1.c" /* 可以使用bo2-1.c中的基本操作 */ Status equal(ElemType c1,ElemType c2) {
www.eeworm.com/read/180558/9302804

h c3-3.h

/* c3-3.h 队列的顺序存储结构(可用于循环队列和非循环队列) */ #define MAXQSIZE 5 /* 最大队列长度(对于循环队列,最大队列长度要减1) */ typedef struct { QElemType *base; /* 初始化的动态分配存储空间 */ int front; /* 头指针,若队列不空,指向队列头元素 */ int r
www.eeworm.com/read/180558/9302942

h c9-6.h

/* c9-6.h 开放定址哈希表的存储结构 */ int hashsize[]={11,19,29,37}; /* 哈希表容量递增表,一个合适的素数序列 */ int m=0; /* 哈希表表长,全局变量 */ typedef struct { ElemType *elem; /* 数据元素存储基址,动态分配数组 */ int count; /* 当前数据元素个
www.eeworm.com/read/376425/9317669

m speedup2.m

% Speedup2.m % 功能:向量、矩阵或数组的动态分配与向量、矩阵或数组的预先初始化之间的运行速度比较 % % 加快MATLAB执行程序的方法之二:在循环语句之前预先对向量、矩阵或数组初始化 % % Author: HUANG Huajiang % Copyright 2003 UNILAB Research Center, % East China Unive
www.eeworm.com/read/375238/9367620

txt china-ip.txt

全国IP地址分配表      xa.sn.cn,西安公众网,西安,陕西,CN,202.100.0.*   xa.sn.cn,西安公众网,西安,陕西,CN,202.100.1.*   xa.sn.cn,西安公众网,西安,陕西,CN,202.100.2.*   xa.sn.cn,西安公众网,西安,陕西,CN,202.100.3.*   xa.sn.cn,西安公众网,西安,陕西,C
www.eeworm.com/read/372391/9511691

cpp algo2-1.cpp

// algo2-1.cpp 实现算法2.1的程序 #include"c1.h" typedef int ElemType; #include"c2-1.h" // 采用线性表的动态分配顺序存储结构 #include"bo2-1.cpp" // 可以使用bo2-1.cpp中的基本操作 Status equal(ElemType c1,ElemType c2) { //
www.eeworm.com/read/372391/9511740

cpp bo2-2.cpp

// bo2-2.cpp 单链表线性表(存储结构由c2-2.h定义)的基本操作(12个) Status InitList(LinkList &L) { // 操作结果:构造一个空的线性表L L=(LinkList)malloc(sizeof(LNode)); // 产生头结点,并使L指向此头结点 if(!L) // 存储分配失败 exit(OVERFLOW);
www.eeworm.com/read/372391/9512070

cpp bo4-2.cpp

// bo4-2.cpp 串采用堆分配存储结构(由c4-2.h定义)的基本操作(15个) // 包括算法4.1、4.4 Status StrAssign(HString &T,char *chars) { // 生成一个其值等于串常量chars的串T int i,j; if(T.ch) free(T.ch); // 释放T原有空间 i=strlen
www.eeworm.com/read/372391/9512109

h c9-6.h

// c9-6.h 开放定址哈希表的存储结构 int hashsize[]={11,19,29,37}; // 哈希表容量递增表,一个合适的素数序列 int m=0; // 哈希表表长,全局变量 struct HashTable { ElemType *elem; // 数据元素存储基址,动态分配数组 int count; // 当前数据元素个数 int
www.eeworm.com/read/372136/9519669

h lcd1602.h

#include #define uint unsigned int #define uchar unsigned char /*LCD 端口定义*/ //LCD 端口要根据实际的连接情况分配IO #define busy 0x80 sbit RS=P2^5; sbit RW=P2^6; sbit E=P2^7; sfr LCDData=0x80;//0x80