美文网首页
二叉树的遍历和创建

二叉树的遍历和创建

作者: cyw1227 | 来源:发表于2019-12-06 22:19 被阅读0次

1. 二叉树的遍历

先序遍历、中序遍历、后序遍历,无论这三种遍历的哪一种,左子树一定先与右子树遍历;所谓的“先中后”是指访问根结点顺序在遍历中的位置。例外还有层次遍历,即广度优先遍历

<img src="https://tva1.sinaimg.cn/large/006tNbRwly1g9ncg3d3gtj30py0eg3z4.jpg" style="zoom:40%;" />

  • 先序:根结点->>左子树->>右子树

    void preOrder(node* root){ //先序遍历
        if(root == NULL){
            return;
        }
        preOrder(root->lchild);
        preOrder(root->rchild);
    }
    
  • 中序:左子树->>根结点->>右子树

    void inOrder(node* root){ //中序遍历
        if(root == NULL){
            return;
        }
        inOrder(root->lchild);
        printf("%d",root->data);
        inOrder(root->rchild);
    }
    
  • 后序:左子树->>右子树->>根结点

    void postOrder(node* root){ //后序遍历
        if(root == NULL){
            return;
        }
        postOrder(root->lchild);
        postOrder(root->rchild);
        printf("%d",root->data);
    }
    
  • 层次遍历(BFS遍历)

    void BFS(node* root){  //层次遍历
        queue<node*> q;
        q.push(root);
        while(!q.empty()){
            node* now = q.front();
            q.pop();
            printf("%d",now->data);
            if(now->lchild != NULL) q.push(now->lchild);
            if(now->rchild != NULL) q.push(now->rchild);
        }
    }
    

2. 创建二叉树

中序序列可以与先序序列、后序序列、层序序列中的任意一个来构建唯一的二叉树,而后三者两两搭配或是三个一起上都无法构建唯一的二叉树。原因是先序、后序、层序均是提供根结点,功能是相同的,都必须由中序序列来区分出左右子树。

#include <cstdio>
#include <queue>
#include <vector>
using namespace std;

struct node{
    node* lchild;
    node* rchild;
    int data;   
};

int n;
vector<int> pre;
vector<int> in;
vector<int> post;
vector<int> layer;

//根据中序和后序,创建二叉树
node* createByPostAndIn(int postL, int postR, int inL, int inR){
    if(postL > postR) return NULL;
    node* root = new node;
    root->data = post[postR];
    int k;
    for(k = inL; k <= inR; k++){
        if(in[k] == post[postR]){
            break;
        }
    }
    int numLeft = k - inL;  //左子树的结点个数
    root->lchild = createByPostAndIn(postL, postL + numLeft - 1, inL, k - 1);
    root->rchild = createByPostAndIn(postL + numLeft, postR - 1, k + 1, inR);
    return root;
}

//根据中序和前序,创建二叉树
node* createByPreAndIn(int preL, int preR, int inL, int inR){
    if(preL > preR) return NULL;
    node* root = new node;
    root->data = pre[preL];
    int k;
    for(k = inL; k <= inR; k++){
        if(in[k] == pre[preL]){
            break;
        }
    }
    int numLeft = k - inL; //左子树的结点个数
    root->lchild = createByPreAndIn(preL + 1, preL + numLeft, inL, k - 1);
    root->rchild = createByPreAndIn(preL + numLeft + 1, preR, k + 1, inR);
    return root;
}

//根据中序和层序创建二叉树
node* createByLayerAndIn(vector<int> layer, vector<int> in, int inL, int inR){
    if(inL > inR || layer.size() == 0) return NULL;
    node* root = new node;
    root->data = layer[0];
    int pos;
    for(pos = inL; pos <= inR; pos++){
        if(in[pos] == layer[0]){
            break;
        }
    }
    vector<int> layerLeft, layerRight; //存放左、右子树的层序序列
    for(int i = 1; i < layer.size(); i++){
        int j;
        for(j = inL; j < pos; j++){
            if(in[j] == layer[i]){
                layerLeft.push_back(layer[i]); //如果在pos前找到,插入左子树
                break;
            }
        }
        //超过pos,j==pos时即为在左子树中没有找到插入右子树(层序遍历保持左右子树层序遍历顺序的一致性)
        if(j == pos) layerRight.push_back(layer[i]); 
    }
    root->lchild = createByLayerAndIn(layerLeft, in, inL, pos - 1);
    root->rchild = createByLayerAndIn(layerRight, in, pos + 1, inR);
    return root;
}



int num = 0;
void BFS(node* root){  //层次遍历
    queue<node*> q;
    q.push(root);
    while(!q.empty()){
        node* now = q.front();
        q.pop();
        printf("%d",now->data);
        num++;
        if(num < n){
            printf(" ");
        }
        if(now->lchild != NULL) q.push(now->lchild);
        if(now->rchild != NULL) q.push(now->rchild);
    }
}

void preOrder(node* root){ //先序遍历
    if(root == NULL){
        return;
    }
    printf("%d",root->data);
    num++;
    if(num < n){
        printf(" ");
    }
    preOrder(root->lchild);
    preOrder(root->rchild);
}

void inOrder(node* root){ //中序遍历
    if(root == NULL){
        return;
    }
    inOrder(root->lchild);
    printf("%d",root->data);
    num++;
    if(num < n){
        printf(" ");
    }
    inOrder(root->rchild);
}

void postOrder(node* root){ //后序遍历
    if(root == NULL){
        return;
    }
    postOrder(root->lchild);
    postOrder(root->rchild);
    printf("%d",root->data);
    num++;
    if(num < n){
        printf(" ");
    }
}

int main(){
    scanf("%d",&n);
    int temp;
    for(int i = 0; i < n; i++){
        scanf("%d",&temp);
        in.push_back(temp);
    }

/*测试数据:中后
7
1 2 3 4 5 6 7
2 3 1 5 7 6 4
*/
    for(int i = 0; i < n; i++){
        scanf("%d",&temp);
        post.push_back(temp);
    }
    node* root = createByPostAndIn(0, n -1, 0, n -1);
/*测试数据:中前
7
1 2 3 4 5 6 7
4 1 3 2 6 5 7
*/
    // for(int i = 0; i < n; i++){
    //     scanf("%d",&temp);
    //     pre.push_back(temp);
    // }
    // node* root = createByPreAndIn(0, n -1, 0, n -1);
/*测试数据:中层
7
1 2 3 4 5 6 7
4 1 6 3 5 7 2
*/
    // for(int i = 0; i < n; i++){
    //     scanf("%d",&temp);
    //     layer.push_back(temp);
    // }
    // node* root = createByLayerAndIn(layer, in, 0, n -1);
    BFS(root);
    return 0;
}

相关文章

  • 二叉树的递归遍历+非递归遍历,Swift实现

    定义二叉树模型 创建二叉树: 创建的二叉树如下: 这个二叉树的遍历分别为: 先序遍历: 124536 中序遍历:4...

  • 二叉树遍历

    总结一下二叉树的深度遍历(DFS)和广度遍历(BFS)首先, 创建二叉树的节点: 一、深度遍历 1.1 先序遍历(...

  • 二叉树的基本操作

    一、基本内容 二叉树的创建(先顺遍历的方法) 二叉树的先序遍历 二叉树的中序遍历 二叉树的后序遍历 哈夫曼树的创建...

  • 数据结构之二叉树2

    二叉树的创建 二叉树的创建用到了辅助队列,通过辅助队列来创建二叉树; 二叉树的遍历 前(先)序遍历 1、递归实现 ...

  • 二叉树 基础操作

    二叉树的使用 二叉树结构 先序创建二叉树 DFS 先序遍历二叉树 中序遍历二叉树 后序遍历二叉树 BFS 层次遍历...

  • 记一次Tree的遍历

    统计利用先序遍历创建的二叉树的深度 利用先序递归遍历算法创建二叉树并计算该二叉树的深度。先序递归遍历建立二叉树的方...

  • 数据结构

    二叉树的创建与遍历

  • 线索二叉树操作

    树节点 创建中序线索二叉树 遍历中序线索二叉树 创建前序线索二叉树 遍历前序线索二叉树 参考:https://bl...

  • 二叉树

    结构体 创建二叉树 递归遍历 栈操作 非递归遍历 层次遍历 完整代码

  • 数据结构

    二叉树的创建与遍历 哈夫曼树的创建

网友评论

      本文标题:二叉树的遍历和创建

      本文链接:https://www.haomeiwen.com/subject/ugkygctx.html