【数据结构】NOJ015 创建二叉树的二叉链表存储结构

//【数据结构】NOJ015 创建二叉树的二叉链表存储结构 #include <stdio.h> #include <stdlib.h> //二叉链表 typedef char ElemType; typedef struct TNode {     ElemType info;     struct TNode *lchild;     struct TNode *rchild; }TNod
相关文章
相关标签/搜索