Tree

来源:互联网 发布:淘宝软妹店铺推荐 编辑:程序博客网 时间:2024/05/17 07:39

树的三种存储方式:

typedef struct  {ElemType data;int parent;} PTree[MaxSize];typedef struct node{ElemType data;struct node *sons[MaxSons];} TSonNode;typedef struct tnode{ElemType data;struct tnode *hp; // struct tnode *vp; // child} TSBNode;


 

原创粉丝点击