文件名称:非递归实现二叉树的先、中、后序遍历
文件大小:3KB
文件格式:CPP
更新时间:2015-05-26 07:48:09
二叉树 遍历 非递归
非递归实现二叉树的先、中、后序遍历 typedef struct binarytree /*定义一棵二叉树*/ { char data; struct binarytree *LChild,*RChild; }BiTNode,*BiTree;
文件名称:非递归实现二叉树的先、中、后序遍历
文件大小:3KB
文件格式:CPP
更新时间:2015-05-26 07:48:09
二叉树 遍历 非递归
非递归实现二叉树的先、中、后序遍历 typedef struct binarytree /*定义一棵二叉树*/ { char data; struct binarytree *LChild,*RChild; }BiTNode,*BiTree;