C++ 实现二叉树的非递归层次遍历(队列实现)
Posted Wecccccccc
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C++ 实现二叉树的非递归层次遍历(队列实现)相关的知识,希望对你有一定的参考价值。
代码如下:
void BinaryTree::LevelOrder(BinTreeNode *cur) {
if (cur == NULL)
return ;
queue<BinTreeNode *>q;
q.push(cur);
while (q.size()) {
BinTreeNode *t = q.front();
q.pop();
if (t == NULL)
continue;
cout << t->data << " ";
q.push(t->lchild);
q.push(t->rchild);
}
}
以上是关于C++ 实现二叉树的非递归层次遍历(队列实现)的主要内容,如果未能解决你的问题,请参考以下文章