二叉树:左右互换
时间限制: 1s
类别: DS:树->简单
问题描述
目的:使用C++模板设计二叉树的抽象数据类型(ADT)。并在此基础上,使用二叉树ADT的基本操作,设计并实现简单应用的算法设计。
内容:(1)请参照链表的ADT模板,设计二叉树的抽象数据类型。(由于该环境目前仅支持单文件的编译,故将所有内容都集中在一个源文件内。在实际的设计中,推荐将抽象类及对应的派生类分别放在单独的头文件中。参考教材、课件,以及网盘中的链表ADT原型文件,自行设计二叉树的ADT。)
注意:二叉树ADT的基本操作的算法设计很多要用到递归的程序设计方法。
(2)ADT的简单应用:使用该ADT设计并实现若干应用二叉树的算法设计。
应用3:要求设计一个递归算法,将二叉树中所有结点左、右子树相互交换。二叉树的存储结构的建立参见二叉树应用1。
参考函数原型:
//交换二叉树中所有结点的左右子树 (外壳)
template<class ElemType>
void BinaryTree_Revolute( BinaryTree<ElemType> &T );
//交换二叉树中所有结点的左右子树 (递归)
template<class ElemType>
void BinaryTree_Revolute_Cursive( BinaryTreeNode<ElemType> *root);
输入说明
第一行:表示无孩子或指针为空的特殊分隔符
第二行:二叉树的先序序列(结点元素之间以空格分隔)
输出说明
第一行:二叉树先序遍历结果
第二行:二叉树中序遍历结果
第三行:二叉树后序遍历结果
第四行:空行
第五行:转换后二叉树先序遍历结果
第六行:转换后二叉树中序遍历结果
第七行:转换后二叉树后序遍历结果
#include <iostream>
#include <sstream>
#include <vector>
#include <string>
using namespace std;
template<class ElemType>
struct BinaryTreeNode
{
ElemType data;
BinaryTreeNode<ElemType>* LChild;
BinaryTreeNode<ElemType>* RChild;
BinaryTreeNode(ElemType item = ElemType(), BinaryTreeNode<ElemType>* L = nullptr, BinaryTreeNode<ElemType>* R = nullptr)
: data(item), LChild(L), RChild(R) {}
};
template<class ElemType>
class BinaryTree
{
public:
BinaryTreeNode<ElemType>* root;
void destroy(BinaryTreeNode<ElemType>*& node)
{
if (node != nullptr)
{
destroy(node->LChild);
destroy(node->RChild);
delete node;
node = nullptr;
}
}
void preorder(BinaryTreeNode<ElemType>* node, vector<ElemType>& result)
{
if (node != nullptr)
{
result.push_back(node->data);
preorder(node->LChild, result);
preorder(node->RChild, result);
}
}
void inorder(BinaryTreeNode<ElemType>* node, vector<ElemType>& result)
{
if (node != nullptr)
{
inorder(node->LChild, result);
result.push_back(node->data);
inorder(node->RChild, result);
}
}
void postorder(BinaryTreeNode<ElemType>* node, vector<ElemType>& result)
{
if (node != nullptr)
{
postorder(node->LChild, result);
postorder(node->RChild, result);
result.push_back(node->data);
}
}
BinaryTree() : root(nullptr) {}
~BinaryTree()
{
destroy(root);
}
void createFromPreorder(vector<ElemType> elements, ElemType empty)
{
auto it = elements.begin();
root = create(it, elements.end(), empty);
}
BinaryTreeNode<ElemType>* create(typename vector<ElemType>::iterator& it, typename vector<ElemType>::iterator end, ElemType empty)
{
if (it == end || *it == empty)
{
return nullptr;
}
BinaryTreeNode<ElemType>* node = new BinaryTreeNode<ElemType>(*it);
++it;
node->LChild = create(it, end, empty);
++it;
node->RChild = create(it, end, empty);
return node;
}
void printPreorder()
{
vector<ElemType> result;
preorder(root, result);
printResult(result);
}
void printInorder()
{
vector<ElemType> result;
inorder(root, result);
printResult(result);
}
void printPostorder()
{
vector<ElemType> result;
postorder(root, result);
printResult(result);
}
void printResult(const vector<ElemType>& result)
{
if (!result.empty())
{
cout << result[0];
for (size_t i = 1; i < result.size(); ++i)
{
cout << ',' << result[i];
}
}
cout << endl;
}
//交换二叉树中所有结点的左右子树 (递归)
void BinaryTree_Revolute_Cursive( BinaryTreeNode<ElemType> *T)
{
if (T == nullptr) // 如果当前节点为空,则返回
return;
// 交换左右子节点
BinaryTreeNode<ElemType>* temp = T->LChild;
T->LChild = T->RChild;
T->RChild = temp;
// 递归地交换当前节点的左子树
BinaryTree_Revolute_Cursive(T->LChild);
// 递归地交换当前节点的右子树
BinaryTree_Revolute_Cursive(T->RChild);
}
};
//交换二叉树中所有结点的左右子树 (外壳)
template<class ElemType>
void BinaryTree_Revolute( BinaryTree<ElemType> &T )
{
T.BinaryTree_Revolute_Cursive(T.root);
return;
}
int main()
{
string nullSymbol;
string preorderInput;
getline(cin, nullSymbol);
getline(cin, preorderInput);
stringstream ss(preorderInput);
string item;
vector<string> elements;
while (ss >> item)
{
elements.push_back(item);
}
BinaryTree<string> tree;
tree.createFromPreorder(elements, nullSymbol);
tree.printPreorder();
tree.printInorder();
tree.printPostorder();
BinaryTree_Revolute(tree);
cout<<endl;
tree.printPreorder();
tree.printInorder();
tree.printPostorder();
return 0;
}