代码搜索:信号链
找到约 10,000 项符合「信号链」的源代码
代码结果 10,000
www.eeworm.com/read/141644/12993158
h c9-4.h
// c9-4.h 双链树的存储结构
#define MAXKEYLEN 16 // 关键字的最大长度
struct KeysType // 关键字类型
{
char ch[MAXKEYLEN]; // 关键字
int num; // 关键字长度
};
struct Record // 记录类型
{
KeysType key; // 关键字
www.eeworm.com/read/308708/13695139
h c9-4.h
// c9-4.h 双链树的存储结构
#define MAXKEYLEN 16 // 关键字的最大长度
struct KeysType // 关键字类型
{
char ch[MAXKEYLEN]; // 关键字
int num; // 关键字长度
};
struct Record // 记录类型
{
KeysType key; // 关键字
www.eeworm.com/read/307670/13717724
h c9-4.h
// c9-4.h 双链树的存储结构
#define MAXKEYLEN 16 // 关键字的最大长度
struct KeysType // 关键字类型
{
char ch[MAXKEYLEN]; // 关键字
int num; // 关键字长度
};
struct Record // 记录类型
{
KeysType key; // 关键字
www.eeworm.com/read/303987/13805402
java treenode1.java
public class TreeNode1 { //二叉树的结点类
public String data; //数据元数
public TreeNode1 left,right; //指向左,右孩子结点的链
public TreeNode1(){
this("?");
}
public TreeNode1(String d){ //构造有值结点
www.eeworm.com/read/382398/6321443
h c9-4.h
// c9-4.h 双链树的存储结构
#define MAXKEYLEN 16 // 关键字的最大长度
struct KeysType // 关键字类型
{
char ch[MAXKEYLEN]; // 关键字
int num; // 关键字长度
};
struct Record // 记录类型
{
KeysType key; // 关键字
www.eeworm.com/read/262778/11391539
h c9-4.h
// c9-4.h 双链树的存储结构
#define MAXKEYLEN 16 // 关键字的最大长度
struct KeysType // 关键字类型
{
char ch[MAXKEYLEN]; // 关键字
int num; // 关键字长度
};
struct Record // 记录类型
{
KeysType key; // 关键字
www.eeworm.com/read/262111/11606001
h c9-4.h
// c9-4.h 双链树的存储结构
#define MAXKEYLEN 16 // 关键字的最大长度
struct KeysType // 关键字类型
{
char ch[MAXKEYLEN]; // 关键字
int num; // 关键字长度
};
struct Record // 记录类型
{
KeysType key; // 关键字
www.eeworm.com/read/251182/12359623
h c9-4.h
// c9-4.h 双链树的存储结构
#define MAXKEYLEN 16 // 关键字的最大长度
struct KeysType // 关键字类型
{
char ch[MAXKEYLEN]; // 关键字
int num; // 关键字长度
};
struct Record // 记录类型
{
KeysType key; // 关键字
www.eeworm.com/read/130200/14203462
h c4-3.h
// c4-3.h 串的块链存储表示
#define CHUNK_SIZE 4 // 可由用户定义的块大小
struct Chunk
{
char ch[CHUNK_SIZE];
Chunk *next;
};
struct LString
{
Chunk *head,*tail; // 串的头和尾指针
int curlen; // 串的当