数据结构:二叉树(前,中,后,层次)非递归遍历。

#include <iostream>
#include <stack>
#include <map>
#include <queue>
#include <string.h>
using namespace std;

struct Node
{
    char data;
    Node *left;
    Node *right;
    Node(char d = char()):data(d),left(NULL),right(NULL){}
};

class Tree
{
    public:
    Tree():root(NULL){}
    void Create(char *LVR,char *LRV)
    {
        int n = strlen(LRV);
        Create(root,LVR,LRV,n);
    }
    void PrintfV()//中序
    {
        Node *t = root;
        if(t==NULL)return;
        stack<Node*> st;
        while(t!=NULL || st.empty()==false)
        {
                while(t!=NULL)
                {
                    st.push(t);
                    t=t->left;
                }
                t = st.top();
                st.pop();
                cout<<t->data<<"  ";
                t=t->right;
        }
        cout<<endl;
    }
    void PrintfR()//后序
    {
        Node *t = root;
        if(t==NULL)return;
        stack<Node*> st;
        map<Node*,bool> mp;//test visted,记录是否已经遍历。
        while(1)
        {
                while(t!=NULL && mp.find(t->left)==mp.end())
                {
                    st.push(t);
                    t=t->left;
                }
                t = st.top();
                if(t->right==NULL)
                {
                      cout<<t->data<<"  ";
                        mp.insert(pair<Node*,bool>(t,true));
                        st.pop();
                        t = st.top();
                        continue;
                }
                if(mp.find(t->right)==mp.end()&&t->right!=NULL)
                {//查询是否已经存在map中,虽然低效,可是直观。
                    t=t->right;
                    continue;
                }
                if(mp.find(st.top())==mp.end())
                {
                    cout<<st.top()->data<<"  ";
                    mp.insert(pair<Node*,bool>(t,true));
                    st.pop();
                    if(st.size()>0)
                    t = st.top();
                }
            if(st.empty()!=false)break;
        }
        cout<<endl;
    }

    void PrintfL()//前序
    {
        Node *t = root;
        if(t==NULL)return;
        stack<Node*> st;
        while(t!=NULL || st.empty()==false)
        {
                while(t!=NULL)
                {
                    cout<<t->data<<"  ";
                    st.push(t);
                    t=t->left;
                }
                t = st.top();
                st.pop();
                t=t->right;
        }
        cout<<endl;
    }
    void Sprintf()//层次
    {
        Node *t = root;
        if(t==NULL)return;
        queue<Node*> st;
        st.push(t);
        while(st.empty()==false)
        {
                Node *p = st.front();
                cout<<p->data<<"  ";
                st.pop();
                if(p->left!=NULL)
                {
                    st.push(p->left);
                }
                if(p->right!=NULL)
                {
                    st.push(p->right);
                }
        }
        cout<<endl;
    }
    private:
    void Create(Node *&t,char *LVR,char *LRV,int n)
    {//根据中序和后序构造二叉树,用n记录作为标记个数。
        if(n==0)return;
        int i = 0;
        while(LRV[n-1]!=LVR[i])i++;
        t = new Node(LRV[n-1]);
        Create(t->right,LVR+i+1,LRV+i,n-i-1);
        Create(t->left,LVR,LRV,i);
    }
    private:
    Node *root;
};
int main()
{
    char LVR[]="CBDAFEG";
    char LRV[]="CDBFGEA";
    Tree t;
    t.Create(LVR,LRV);
    t.PrintfV();
    t.PrintfL();
    t.PrintfR();
    t.Sprintf();
    return 0;
}

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

时间: 2024-11-05 13:39:25

数据结构:二叉树(前,中,后,层次)非递归遍历。的相关文章

【算法导论】二叉树的前中后序非递归遍历实现

二叉树的递归遍历实现起来比较简单,而且代码简洁:而非递归遍历则不那么简单,我们需要利用另一种数据结构---栈来实现.二叉树的遍历又可以分为前序.中序和后序三种,它们是按照根结点在遍历时的位置划分的,前序遍历则根结点先被遍历,中序则根结点在左右叶子节点之间被遍历,后序则是根结点最后被遍历.三种非递归遍历中,前序和中序都不是太复制,而后序遍历则相对较难. 一.前序遍历 我们这里前序遍历按照"根-左-右"的顺序来遍历.这里按照"递归--非递归"的次序来研究,之后的几种亦是

递归非递归的二叉树遍历(递归前中后,非递归前中后,层次遍历,凹入打印法等)

由于所有的递归算法都可以借助于堆栈转换成循环结构的非递归算法.方法一:形式化模拟转换.方法二:根据要求解问题的特点设计借助于堆栈的循环结构算法.而此次正好是利用第二种按方法求解. 1.1非递归前序遍历: 首先利用下图来设计非递归前序遍历算法思想: 堆栈结构体如下: #define size 100 typedef struct { DataType data[size]; int tag[100]; //这个是在非递归后序中用到 int top : }SeqStack : (1)初始化设置一个堆

Qt实现 动态化遍历二叉树(前中后层次遍历)

binarytree.h 头文件 1 #ifndef LINKEDBINARYTREE_H 2 #define LINKEDBINARYTREE_H 3 #include<c++/algorithm> 4 #include<c++/cstdio> 5 #include<string> 6 #include<c++/string> 7 #include<c++/vector> 8 #include<vector> 9 #include&

二叉树前中后、层次遍历

#include<iostream> #include<stack> #include<queue> using namespace std; /* 二叉树遍历算法递归+非递归: 前序遍历:根->左->右 中序遍历:左->根->右 后序遍历:左->右->根 层次遍历 */ struct TreeNode { int val; TreeNode *left; TreeNode *right; TreeNode(int x): val(x

二叉树前中后序遍历非递归实现

package MyExc; import java.util.Stack; class TreeNode{ int data; TreeNode left; TreeNode right; } public class BinaryTree { public void preOrder(TreeNode head){ Stack<TreeNode> stack = new Stack<>(); stack.add(head); while(!stack.isEmpty()){ h

二叉树前中后递归遍历

1 public class Node { 2 public int value; 3 public Node left; 4 public Node right; 5 6 public Node (int data){ 7 this.value = data; 8 } 9 } 1 public class BinaryTreeMethod { 2 3 /** 4 * 二叉树递归前序遍历 5 * @param head 6 */ 7 public void preOrderRecur(Node

二叉树前中后序遍历递归转循环

通过观察递归实现,用循环和栈模拟递归实现中结点入栈和出栈的过程. #include <bits/stdc++.h> #define DBG(x) cerr << #x << " = " << x << endl using namespace std; typedef long long LL; struct Node { int val; Node *left, *right; Node() : left(NULL), ri

飘逸的python - 极简的二叉树前中后序通杀函数

对于任一结点,可以按某种次序执行三个操作: 访问结点本身(N) 遍历该结点的左子树(L) 遍历该结点的右子树(R) 用来表示顺序,即,前序NLR/中序LNR/后序LRN. 下面我们用namedtuple来表达树,而通杀的遍历函数带一个order参数,只要我们把指定顺序传进去即可实现对应的遍历. #coding=utf-8 ''' 1 / / / 2 3 / \ / 4 5 6 / / 7 8 9 ''' from collections import namedtuple from sys im

二叉树后序非递归遍历

package com.basic.bt; import java.util.ArrayList; import java.util.Stack; /** * Created by mac on 2017/1/19. */ public class PostOrderBT { ArrayList<Integer> result = new ArrayList<Integer>(); public void postorder(TreeNode root) { if(root ==

二叉搜索树的先序中序后序非递归遍历代码

#include<iostream>#include<stack>#include<vector>using namespace std;struct node{  int val;  node *left,*right;  node(int _val):val(_val),left(NULL),right(NULL){     } };struct bignode{ bool isfirst;  node* pnode; };void postorder(node*