数据结构 BFS遍历树

来源:互联网 发布:快速选择算法思想 编辑:程序博客网 时间:2024/04/29 21:34

按先序遍历创建一棵树,以层次遍历输出

样例输入

A B # D # # C E # # F # #

样例输出

LevelOrder: A B C D E F 



#include <iostream>#include <queue>using namespace std;struct node {              //表示一个树上的节点  char ch;  node *left, *right;};node* creat() {               //以递归的方式构造一棵二叉树  node *root = new node;  char c;  cin >> c;  if(c == '#')  root = NULL;  else {    root->ch = c;    root->left = creat();    root->right = creat();  }  return root;        //返回这棵树的根节点}int main() {  node *root = creat();  queue<node*> q;  if(root) q.push(root);  cout << "LevelOrder:";  while(!q.empty()) {//用BFS的方法,层次遍历输出该二叉树    cout << " " << q.front()->ch;    if(q.front()->left)  q.push(q.front()->left);//把当前节点左子树的根节点加入队列前,必须先检验当前节点是否具有左子树!!!    if(q.front()->right)  q.push(q.front()->right);<span style="white-space:pre"></span>//把当前节点右子树的根节点加入队列前,必须先检验当前节点是否具有右子树!!!    q.pop();<span style="white-space:pre"></span>//处理完当前节点以后,就可以把它从队列中剔除了!  }  cout << endl;  return 0;}
附注:
<span style="color: rgb(51, 51, 51); font-family: arial, 宋体, sans-serif; font-size: 14px; line-height: 24px; text-indent: 28px; ">c.front() 返回容器c的第一个元素的引用。如果c为空,则该操作为空。</span>
<span style="color: rgb(51, 51, 51); font-family: arial, 宋体, sans-serif; font-size: 14px; line-height: 24px; text-indent: 28px; "></span>


0 0
原创粉丝点击