已知二叉树的中序和后序遍历排列,求前序遍历

#include
#include
using namespace std;
void  Preorder(string inorder,string postorder)
{
	if(inorder.size()>0)
	{
		char ch=postorder[postorder.size()-1];
		cout<>inorder;
	cin>>postorder;
	Preorder(inorder,postorder);
	cout<

你可能感兴趣的:(我的算法小笔记,数据结构)