当前位置:   article > 正文

二叉树的层序遍历(c++)_二叉树层序遍历c++

二叉树层序遍历c++

使用层序建树进行建树

二叉树的层序建树

层序遍历代码思路

借助一个辅助队列。

  • 先将二叉树的根结点入队,
  • 然后出队,访问出队结点,
    • 若它有左子树,则将左子树根节点入队;
    • 若它有右子树,则将右子树根节点入队。
    • 然后出队,
    • 访问出队结点……如此反复,直到队列为空
// biTree——树的结构体指针,seQueue——辅助队列的结构体指针
// qElemType,辅助队列中存储的元素类型,这里为树结点的指针
void levelOrder(biTree t) {
    seQueue seq;
    qElemType e;
    initQueue(seq);
    // 根节点入队
    enQueue(seq, t);

	// 辅助队列为空时结束循环
    while (seq->front != seq->rear) {
        // 结点出队
        deQueue(seq, e);
        // 访问结点
        cout << e->data << ' ';
        // 若有左子树,左子树根节点入队
        if (e->lChild != NULL) enQueue(seq, e->lChild);
        // 若有右子树,右子树根节点入队
        if (e->rChild != NULL) enQueue(seq, e->rChild);
    }
    cout << endl;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22

实现过程

根据上面的代码思路,需要实现两个数据结构,一个二叉树,一个队列,需要实现的功能有

  • 二叉树、队列的数据结构定义
  • 二叉树的创建、队列的初始化
  • 二叉树的层序遍历、队列的出队、入队操作

实现结果&完整代码

在这里插入图片描述

/**
 * 树的层序建树和层序遍历
 */
#include <iostream>

using namespace std;

const int MAXSIZE = 10;

typedef char tElemType;
typedef struct biTNode {
    tElemType data;
    struct biTNode *lChild, *rChild;
} biTNode, *biTree;

typedef biTree qElemType;
typedef struct {
    qElemType data[MAXSIZE];
    int front, rear;
} seQNode, *seQueue;

void initQueue(seQueue &q) {
    q = (seQueue) calloc(1, sizeof(seQNode));
}

void enQueue(seQueue q, qElemType e) {
    if ((q->rear + 1) % MAXSIZE != q->front) {
        q->data[q->rear] = e;
        q->rear = (q->rear + 1) % MAXSIZE;
    }
}

void deQueue(seQueue q) {
    if (q->rear == q->front) return;
    q->front = (q->front + 1) % MAXSIZE;
}

void deQueue(seQueue q, qElemType &e) {
    if (q->rear == q->front) return;

    e = q->data[q->front];
    q->front = (q->front + 1) % MAXSIZE;
}

void useLevelInitTree(biTree &t) {
    t = NULL;
    biTNode *newBTNode, *pCur;
    tElemType e;

    seQueue seq;
    initQueue(seq);
    while (scanf("%c", &e)) {
        if (e == '\n') break;

        newBTNode = (biTNode *) calloc(1, sizeof(biTNode));
        newBTNode->data = e;
        if (t == NULL) {
            t = newBTNode;
            enQueue(seq, newBTNode);
            continue;
        } else {
            enQueue(seq, newBTNode);
        }

        pCur = seq->data[seq->front];
        if (pCur->lChild == NULL) {
            pCur->lChild = newBTNode;
        } else if (pCur->rChild == NULL) {
            pCur->rChild = newBTNode;
            deQueue(seq);
        }
    }
}

void levelOrder(biTree t) {
    seQueue seq;
    qElemType e;
    initQueue(seq);
    enQueue(seq, t);

    while (seq->front != seq->rear) {
        deQueue(seq, e);
        cout << e->data << ' ';
        if (e->lChild != NULL) enQueue(seq, e->lChild);
        if (e->rChild != NULL) enQueue(seq, e->rChild);
    }
    cout << endl;
}

void inOrder(biTree t) {
    if (t != NULL) {
        inOrder(t->lChild);
        cout << t->data << ' ';
        inOrder(t->rChild);
    }
}

int main()
{
    biTree tree;
    useLevelInitTree(tree);

    cout << "---------------------------" << endl;
    cout << "inOrder: ";
    inOrder(tree);
    cout << endl << "leverOrder: ";
    levelOrder(tree);

    return 0;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110

王道数据结构

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/515040
推荐阅读
相关标签
  

闽ICP备14008679号