代码搜索:多时钟域
找到约 10,000 项符合「多时钟域」的源代码
代码结果 10,000
www.eeworm.com/read/444277/7614718
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/442220/7656900
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/438922/7719286
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/299227/7875008
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/246401/12730015
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/329948/12925307
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/326973/13107259
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/241345/13153757
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/240259/13228359
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/137221/13339756
cpp bitnode.cpp
#include"stdio.h"
#include"malloc.h"
#include"define.h"
typedef char TElemType;
typedef struct BiTNode /*声明二叉树结点的形式*/
{
TElemType data; /*定义数据域*/
struct BiTNode *lchild,*rchild,*parent;