给定一个二叉树的中序遍历和后序遍历求出其层序遍历和先序遍历。
建成一棵二叉树
1 | int in_order[maxn], post_order[maxn], lch[maxn], rch[maxn]; |
层序遍历
1 | /* |
先序遍历
1 | /* |
To make the world a better place
给定一个二叉树的中序遍历和后序遍历求出其层序遍历和先序遍历。
1 | int in_order[maxn], post_order[maxn], lch[maxn], rch[maxn]; |
1 | /* |
1 | /* |