1. 首页
  2. 课程学习
  3. 3G/移动开发
  4. 张乃孝版的数据结构课本课件讲解代码ParTree.c.doc

张乃孝版的数据结构课本课件讲解代码ParTree.c.doc

上传者: 2020-12-12 10:42:53上传 DOC文件 21KB 热度 4次
/*ParTree.c*/ /*树的父指针表示法*/ typedef int DataType; struct ParTreeNode { DataType info; /* 结点中的元素 */ int parent; /* 结点的父结点位置 */ }; struct ParTree{ int MAXNUM /* 树中最大结点个数 */ int n; /* 树中已有结点的个数 */ struct
下载地址
用户评论