C++用类实现二叉树的创建,前序中序后序遍历(附完整代码)

本文介绍了如何使用C++编程语言实现二叉树的创建,并提供了前序、中序、后序遍历的完整代码。前序遍历顺序为'根左右',中序遍历为'左根右',后序遍历为'左右根'。
摘要由CSDN通过智能技术生成

C++用类实现二叉树的创建,前序中序后序遍历(附完整代码)

前序、中序、后序遍历

二叉树的遍历分为前序遍历,中序遍历和后序遍历三种遍历方法。前序遍历的顺序为“根左右”,中序遍历的顺序为“左根右”,后序遍历的顺序是“左右根”。

直接上代码

#include<iostream>
#include<vector>
#include<stdio.h>
using namespace std;

//声明类
class BinaryTree {
   
public:
	char data;
	BinaryTree* left, * right;
};

//按照前序遍历创建二叉树
void CreatBinaryTree(BinaryTree*& root) {
   
	char c;
	cin >> c;
	if (c == '#')	//当遇到#时,令树的根节点为NULL,从而结束该分支的递归
		root = NULL;
	else
	{
   
		root = new BinaryTree;
		root->data = c;	//根节点数据
		CreatBinaryTree(root
以下是使用C++实现二叉树前序中序后序遍历的示例代码: ```cpp #include <iostream> using namespace std; // 定义二叉树结点 struct TreeNode { int val; TreeNode* left; TreeNode* right; TreeNode(int x) : val(x), left(nullptr), right(nullptr) {} }; // 构建二叉树 TreeNode* buildTree(int pre[], int in[], int preStart, int preEnd, int inStart, int inEnd) { if (preStart > preEnd || inStart > inEnd) { return nullptr; } int rootVal = pre[preStart]; int rootIndex = 0; for (int i = inStart; i <= inEnd; i++) { if (in[i] == rootVal) { rootIndex = i; break; } } int leftLen = rootIndex - inStart; TreeNode* root = new TreeNode(rootVal); root->left = buildTree(pre, in, preStart + 1, preStart + leftLen, inStart, rootIndex - 1); root->right = buildTree(pre, in, preStart + leftLen + 1, preEnd, rootIndex + 1, inEnd); return root; } // 前序遍历 void preOrder(TreeNode* root) { if (root == nullptr) { return; } cout << root->val << " "; preOrder(root->left); preOrder(root->right); } // 中序遍历 void inOrder(TreeNode* root) { if (root == nullptr) { return; } inOrder(root->left); cout << root->val << " "; inOrder(root->right); } // 后序遍历 void postOrder(TreeNode* root) { if (root == nullptr) { return; } postOrder(root->left); postOrder(root->right); cout << root->val << " "; } int main() { int pre[] = {1, 2, 4, 5, 3, 6, 7}; int in[] = {4, 2, 5, 1, 6, 3, 7}; TreeNode* root = buildTree(pre, in, 0, 6, 0, 6); cout << "前序遍历结果:"; preOrder(root); cout << endl; cout << "中序遍历结果:"; inOrder(root); cout << endl; cout << "后序遍历结果:"; postOrder(root); cout << endl; return 0; } ``` 在上面的代码中,我们首先定义了二叉树结点结构体`TreeNode`,然后实现了一个`buildTree`函数,该函数用于根据前序遍历数组和中序遍历数组构建二叉树。接着,我们分别实现前序遍历、中序遍历和后序遍历的函数,最后在主函数中调用这些函数进行遍历。
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值