摘要: 二叉树和链表相似,只是后节点变成了左右节点,重要的是递归思想的理解和返回时候的层级结构 1.满二叉树的穿件及前中后序遍历 #include <stdio.h>#include <stdlib.h> typedef struct node{ int date; struct node * lchild 阅读全文
posted @ 2019-07-25 20:26 灰机12321 阅读(243) 评论(0) 推荐(0) 编辑