我是靠谱客的博主 笑点低枕头,最近开发中收集的这篇文章主要介绍已知树的两种遍历求第三种一、已知先序遍历和中序遍历,求后序遍历二、已知中序遍历和后序遍历,求先序遍历三、已知先序遍历和后序遍历,求中序遍历,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

一、已知先序遍历和中序遍历,求后序遍历

#include<bits/stdc++.h>

using namespace std;

typedef struct TreeNode{
	struct TreeNode* left;
	struct TreeNode* right;
	char elem;
}TreeNode;

TreeNode* BinaryTreeFromOrderings(char* preorder, char* inorder, int length)
{
	TreeNode* node = (TreeNode*)malloc(sizeof(TreeNode));
	node->elem = *preorder;
	
	if(length == 0) return NULL;
	
	int rootIndex = 0;
	for(; rootIndex < length; rootIndex++)
	{
		if(inorder[rootIndex] == *preorder)
			break;
	}
	node->left = BinaryTreeFromOrderings(preorder + 1, inorder, rootIndex);
	node->right = BinaryTreeFromOrderings(preorder+rootIndex+1, inorder+rootIndex+1, length-rootIndex-1); 
	cout << node->elem <<' '; //注意位置 
}

int main()
{
	char* pre = "GDAFEMHZ";
	char* in = "ADEFGHMZ";
	BinaryTreeFromOrderings(pre, in, 8);
	return 0;
}

//out:A E F D H Z M G

二、已知中序遍历和后序遍历,求先序遍历

#include<bits/stdc++.h>

using namespace std;

typedef struct TreeNode{
	struct TreeNode* left;
	struct TreeNode* right;
	char elem;
}TreeNode;

TreeNode* BinaryTreeFromOrderings(char* postorder, char* inorder, int length)
{
	TreeNode* node = (TreeNode*)malloc(sizeof(TreeNode));
	node->elem = *(postorder+length-1);
	
	if(length == 0) return NULL;
	
	int rootIndex = 0;
	for(; rootIndex < length; rootIndex++)
	{
		if(inorder[rootIndex] == *(postorder+length-1))
			break;
	}
	cout << node->elem <<' '; //注意位置 
	node->left = BinaryTreeFromOrderings(postorder, inorder, rootIndex);
	node->right = BinaryTreeFromOrderings(postorder+rootIndex, inorder+rootIndex+1, length-rootIndex-1); 
}

int main()
{
	char* post = "AEFDHZMG";
	char* in = "ADEFGHMZ";
	BinaryTreeFromOrderings(post, in, 8);
	return 0;
}

三、已知先序遍历和后序遍历,求中序遍历

经分析知无解

最后

以上就是笑点低枕头为你收集整理的已知树的两种遍历求第三种一、已知先序遍历和中序遍历,求后序遍历二、已知中序遍历和后序遍历,求先序遍历三、已知先序遍历和后序遍历,求中序遍历的全部内容,希望文章能够帮你解决已知树的两种遍历求第三种一、已知先序遍历和中序遍历,求后序遍历二、已知中序遍历和后序遍历,求先序遍历三、已知先序遍历和后序遍历,求中序遍历所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(57)

评论列表共有 0 条评论

立即
投稿
返回
顶部