代码搜索:Tree
找到约 10,000 项符合「Tree」的源代码
代码结果 10,000
www.eeworm.com/read/205163/15325212
fr tree.1.fr
.\" $Copyright: $
.\" Copyright (c) 1996 - 2001 by Steve Baker
.\" All Rights reserved
.\"
.\" This software is provided as is without any express or implied
.\" warranties, including, without limitat
www.eeworm.com/read/204479/15337779
c tree_levelorder.c
/* 树的广度优先周游算法*/
#include
#include
#define MAXNUM 20
#define null -1
/* typedef int DataType; */
struct ParTreeNode {
/*DataType info; 结点中的元素 */
int parent;
www.eeworm.com/read/204479/15337788
c tree_parentlink.c
/* 树的父指针表示法*/
#define MAXNUM 20
typedef int DataType;
struct ParTreeNode {
DataType info; /* 结点中的元素 */
int parent; /* 结点的父结点位置 */
};
struct ParTree {
int n;
www.eeworm.com/read/204479/15337791
c tree_childlist.c
/* 树的子表表示法*/
#include
#define MAXNUM 20
typedef int DataType ;
struct EdgeNode { /* 子表中结点的结构 */
int nodeposition;
struct EdgeNode *link;
};
struct ChiTr