摘要: 二叉树遍历有先序遍历、中序遍历、后序遍历。下面有递归和非递归的方式:#include "Status.h"#include typedef struct BiTNode { TElemType data; struct BiTNode *LChild, *RChild;}BiTNo... 阅读全文
posted @ 2014-11-17 18:30 tt_tt---> 阅读(129) 评论(0) 推荐(0) 编辑