递归返回子树的指针集合。作为 左子树或右子树。 从而构建整颗树。 结果:二叉树的输出有点丑 横向的,主要关注点,这是个搜索二叉树, 当前根节点的值大于左子树节点的值 当前根节点的值小于右子树节点的值 左右子树同样是二叉搜索树 cout << " " << endl ; ...
分类:
其他好文 时间:
2019-02-03 00:54:32
阅读次数:
195
例如:按树输出如下:
#include
#include
#include
#define MAXSIZE 100
typedef char ElemType;
typedef struct Node
{
ElemType data;
struct Node *lchild;
struct Node *rchild;
...
分类:
其他好文 时间:
2015-07-27 23:05:04
阅读次数:
255