摘要: /*二叉树前序、中序、层次层次遍历*/ #include<stdio.h> #include<malloc.h> typedef char ElemType; typedef struct BiTNode { ElemType val; struct BiTNode *lchild,*rchild; 阅读全文
posted @ 2020-07-23 20:10 石乐智先生 阅读(187) 评论(0) 推荐(0) 编辑