代码搜索:多时钟域
找到约 10,000 项符合「多时钟域」的源代码
代码结果 10,000
www.eeworm.com/read/191798/8422058
txt cirlinklistm.txt
//单循环链表的类定义cirlinklist.h
#define LEN 20
typedef int ElemType;
//单循环链表中结点的类型
typedef struct Lnode {
ElemType data; //值域
Lnode* next; //指针域
}LNode;
class cirlinklist
{private:
LNode
www.eeworm.com/read/191798/8422082
h cirlinklist.h
//单循环链表的类定义cirlinklist.h
#define LEN 20
typedef int ElemType;
//单循环链表中结点的类型
typedef struct Lnode {
ElemType data; //值域
Lnode* next; //指针域
}LNode;
class cirlinklist
{private:
LNode
www.eeworm.com/read/289577/8542599
h c6-4.h
/* c6-4.h 树的双亲表存储表示 */
#define MAX_TREE_SIZE 100
typedef struct
{
TElemType data;
int parent; /* 双亲位置域 */
} PTNode;
typedef struct
{
PTNode nodes[MAX_TREE_SIZE];
int n; /*
www.eeworm.com/read/287904/8662660
h c6-4.h
/* c6-4.h 树的双亲表存储表示 */
#define MAX_TREE_SIZE 100
typedef struct
{
TElemType data;
int parent; /* 双亲位置域 */
} PTNode;
typedef struct
{
PTNode nodes[MAX_TREE_SIZE];
int n; /*
www.eeworm.com/read/385645/8794819
h c6-4.h
/* c6-4.h 树的双亲表存储表示 */
#define MAX_TREE_SIZE 100
typedef struct
{
TElemType data;
int parent; /* 双亲位置域 */
} PTNode;
typedef struct
{
PTNode nodes[MAX_TREE_SIZE];
int n; /*