前序+中序生成二叉树 or 后序+中序生成二叉树,并且以凹入法输出
#include<iostream>
#include<stdlib.h>
#include <windows.h>
using namespace std;
typedef struct Node
{
char data;
struct Node *leftChild;
struct Node *rightChild;
} BiTreeNode...
原创
2019-10-28 15:02:41 ·
804 阅读 ·
0 评论