二叉树的建立与遍历(二)(c++实现)

【目标】

建立如下所示的一棵二叉树,并且输出其对应的前序遍历、中序遍历、后序遍历。

【代码实现】

// Binarytree.h
#ifndef Binarytree_H
#define Binarytree_H
template<class T> class Binarytree;
template<class T>
class TreeNode
{
    friend class Binarytree<T>;
private:
    T data;
    TreeNode<T> *rchild;    //右指针指向右子树
    TreeNode<T> *lchild;   //左指针指向左子树
};
template<class T>
class Binarytree
{
public:
    Binarytree(){root=0;};

    void Creattree2();
    void Creattree2(TreeNode<T> *&currentnode);//使用指针引用建立二叉树

    void Preorder();
    void Preorder(TreeNode<T> *currentnode); //前序遍历

    void Inorder();
    void Inorder(TreeNode<T> *currentnode); //中序遍历

    void Postorder();
    void Postorder(TreeNode<T> *currentnode); //后序遍历
private:
    TreeNode<T> *root;
};

//--------------先序递归创建二叉树--------
template<class T>
void  Binarytree<T>::Creattree2()
{
  Creattree2(root);
}
template<class T>
void  Binarytree<T>::Creattree2(TreeNode<T> *&currentnode)
{
 //按先序输入二叉树中结点的值(一个字符),空格字符代表空树,  

 char ch;
 if((ch=getchar())==‘#‘)
 {
   currentnode=0;
 }
 else
 {
  currentnode=new TreeNode<T>();//产生新的子树
  currentnode->data=ch;
  Creattree2(currentnode->lchild);//递归创建左子树
  Creattree2(currentnode->rchild);//递归创建右子树
 }
}

//------递归实现二叉树的前序遍历------
template<class T>
void  Binarytree<T>::Preorder()
{
    cout<<"前序遍历(根->左->右)为:";
    Preorder(root);
}
template<class T>
void  Binarytree<T>::Preorder(TreeNode<T> *currentnode)
{
  if(currentnode)
  {
    cout<<currentnode->data<<" ";
    Preorder(currentnode->lchild);
    Preorder(currentnode->rchild);
  }
}

//------递归实现二叉树的中序遍历------
template<class T>
void  Binarytree<T>::Inorder()
{
    cout<<"中序遍历(左->根->右)为:";
    Inorder(root);
}
template<class T>
void  Binarytree<T>::Inorder(TreeNode<T> *currentnode)
{
  if(currentnode)
  {
    Inorder(currentnode->lchild);
    cout<<currentnode->data<<" ";
    Inorder(currentnode->rchild);
  }
}

//------递归实现二叉树的后序遍历------
template<class T>
void  Binarytree<T>::Postorder()
{
    cout<<"后序遍历(左->右->根)为:";
    Postorder(root);
}
template<class T>
void  Binarytree<T>::Postorder(TreeNode<T> *currentnode)
{
  if(currentnode)
  {
    Postorder(currentnode->lchild);
    Postorder(currentnode->rchild);
    cout<<currentnode->data<<" ";
  }
}
#endif
//main.cpp
#include "Binarytree.h"
#include <iostream>
using namespace std;
int main()
{
  Binarytree<char> Tree1;
  Tree1.Creattree2();
  Tree1.Preorder();
  cout<<endl;
  Tree1.Inorder();
  cout<<endl;
  Tree1.Postorder();
  cout<<endl;
  system("pause");
  return 0;
}

【结果图】

版权声明:本文为博主原创文章,未经博主允许不得转载。

时间: 2024-10-12 09:18:01

二叉树的建立与遍历(二)(c++实现)的相关文章

小朋友学数据结构(3):二叉树的建立和遍历

小朋友学数据结构(3):二叉树的建立和遍历 一.基本概念 BinaryTree.png 二叉树:每个结点的子结点个数不大于2的树,叫做二叉树. 根结点:最顶部的那个结点叫做根结点,根结点是所有子结点的共同祖先.比如上图中的"7"结点就是根结点. 子结点:除了根结点外的结点,都叫子结点. 叶子结点:没有子结点的结点,叫做叶子结点.比如上图中的"1"结点."5"结点和"11"结点. 二叉树的遍历,有三种: (1)前序遍历:先遍历根

数据结构 二叉树的建立、遍历、销毁的递归算法(C语言)

这些是较为简单的二叉树的建立.遍历.销毁的递归算法.假设二叉树都用二叉链作为存储结构,并约定根节点的指针用T表示. 为了简化问题,我们用char类型的字符代替树中的数据,并且用前序遍历的算法,建立二叉树过程如下: 输入一个根节点. 若输入的是“ ”(即空格字符),则表明改结点为空,T设置为NULL: 若输入的不是“ ”(空格字符),则将字符存入到T->data中,并依次递归建立它的左子树T->lchild,和右子树T->rchild; 测试的源代码如下: 1 #include<st

C语言二叉树的建立与遍历

二叉树的建立和遍历都要用到递归,先暂时保存一下代码,其中主要是理解递归的思想,其它的就都好理解了.这里是三种遍历方式,其实理解一种,其它的几个就都理解了,就是打印出来的顺序不一样而已.建立和遍历的方式差不多.也分好几种方式建立,这里 就写一种,就是先序建立 1 #include <stdio.h> 2 #include <stdlib.h> 3 4 typedef struct TreeNode{ 5 char ch; 6 struct TreeNode *lchild, *rch

二叉树的建立与遍历(山东理工OJ)

数据结构实验之二叉树的建立与遍历 题目描述 已知一个按先序序列输入的字符序列,如abc,,de,g,,f,,,(其中逗号表示空节点).请建立二叉树并按中序和后序方式遍历二叉树,最后求出叶子节点个数和二叉树深度. 输入 输入一个长度小于50个字符的字符串. 输出 输出共有4行: 第1行输出中序遍历序列: 第2行输出后序遍历序列: 第3行输出叶子节点个数: 第4行输出二叉树深度. 示例输入 abc,,de,g,,f,,, 示例输出 cbegdfa cgefdba 3 5 #include <iost

关于二叉树,建立、遍历、求节点最大距离

今天做了一题求二叉树节点的最大距离,顺便写了下二叉树的建立,遍历的过程. 我觉得这题的主要思想是深度遍历+动态规划,我们在深度遍历的过程中,对于某一个子树,求出左右子树叶子节点到根节点的最大距离,进而求出经过根节点的最大距离. 最后求出所有子树经过根节点的最大距离.就是这个题目的最终结果.代码如下: //二叉树的建立,以及遍历 //16 14 8 2 -1 -1 4 -1 -1 7 1 -1 -1 -1 10 9 -1 -1 3 -1 -1 //16 14 8 2 -1 -1 4 -1 -1 7

C++ 二叉树的建立与遍历

重温了一下二叉树这个结构,以前上课的时候都是感觉懂了,具体实现还没有动手写过.主要写了二叉树的建立,递归遍历以及深度,根节点等方法. //树节点的头文件 #ifndef BinTreeNode_H_#define BinTreeNode_H_#define NULL 0class BinTreeNode{public: char data; BinTreeNode* leftChild; //左子树 BinTreeNode* rightChild;//右子树 public: BinTreeNod

二叉树的建立与遍历(c++实现)

[目标] 建立如下所示的一棵二叉树,并且输出其对应的前序遍历.中序遍历.后序遍历. [代码实现] 建立二叉树以及实现遍历的操作存放在Binarytree.h文件中 //Binarytree.h #ifndef Binarytree_H #define Binarytree_H template<class T> class Binarytree; template<class T> class TreeNode { friend class Binarytree<T>;

大话数据结构——二叉树的建立于遍历

#include<iostream> #include<assert.h> #include<stdlib.h> #include <stdio.h> #include <cstdlib> using namespace std; #define OK 1 #define TURE 1 #define ERROR 0 #define FALSE 0 typedef char elemtype; elemtype ch; //二叉树的二叉链表结点结

二叉树的建立和遍历

二叉树是十分重要的数据结构,主要用来存放数据,并且方便查找等操作,在很多地方有广泛的应用. 今天主要写的最基本的二叉树,后续会继续写线索二叉树,二叉排序树,平衡二叉树等. 二叉树的建立思路仍然是采用的递归的思想,给定一个指向根节点的指针,然后递归调用ceate()函数,自动生成一个二叉树.就像是在地上挖了个坑(根节点),然后他会拿着斧子(create函数)自己挖一颗很大的洞穴(二叉树)出来.当然挖坑前需要先定义每个洞长什么样(定义节点结构). 1 #include<iostream> 2 us