三木社区

标题: C语言数据结构-c6-5.h [打印本页]

作者: blake    时间: 2017-9-1 09:14
标题: C语言数据结构-c6-5.h
  1. /* c6-5.h 树的二叉链表(孩子-兄弟)存储表示 */
  2. typedef struct CSNode
  3. {
  4.    TElemType data;
  5.    struct CSNode *firstchild,*nextsibling;
  6. }CSNode,*CSTree;
复制代码







欢迎光临 三木社区 (http://www.sanmulink.com/) Powered by Discuz! X3.3