码迷,mamicode.com
首页 > 其他好文 > 详细

二叉树层次遍历

时间:2014-11-24 16:53:44      阅读:247      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   ar   color   sp   div   log   bs   

二叉树的层次遍历,也就是广度优先遍历。代码如下:

 1 void HierarchyBiTree(BiTree *Root)
 2 {
 3     LinkQueue *Q; 
 4 
 5     InitQueue(Q); 
 6 
 7     if (Root == NULL) return ; 
 8     
 9     BiNode *p = Root; 
10     EnQueue(Q, p);
11 
12     while (!QueueEmpty(Q)) 
13     {                
14         DeQueue(Q, p); 
15         Visit(p->data);
16 
17         if (p->lchild)
18             EnQueue(Q, p->lchild); 
19         if (p->rchild)
20             EnQueue(Q, p->rchild); 
21     }
22 
23     DestroyQueue(Q);              
24     return ;
25 }

 

二叉树层次遍历

标签:des   style   blog   ar   color   sp   div   log   bs   

原文地址:http://www.cnblogs.com/yyxayz/p/4118728.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!