码迷,mamicode.com
首页 > 其他好文 > 详细

《数据结构》示范程序\树的长子-兄弟表示法

时间:2015-04-18 10:01:40      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:

/* 树的长子-兄弟表示法*/

#include<stdio.h>

typedef int DataType ;
struct  CSNode;        /* 树中结点结构 */
typedef  struct  CSNode   *PCSNode; /* 结点的指针类型 */
struct  CSNode         /* 结点结构定义 */
{ 
  DataType   info;     /* 结点中的元素 */
  PCSNode  lchild;     /* 结点的最左子女的指针 */
  PCSNode  rsibling;     /* 结点的右兄弟的指针 */
};

typedef  struct CSNode  *CSTree; /* 树类型定义 */
typedef  CSTree   *PCSTree;

PCSNode leftChild_cstree(PCSNode p ){
  return p->lchild;
}

PCSNode rightSibling_cstree(PCSNode p ){
 return p->rsibling;
}

PCSNode root_cstree(PCSTree t ){
 return *t;
}

int isNull_cstree(PCSTree t ){
 return *t==NULL;
}

int main(){
 return 0;
}

(转)

《数据结构》示范程序\树的长子-兄弟表示法

标签:

原文地址:http://www.cnblogs.com/prayer521/p/4436781.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!