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

广搜 BFS()

时间:2020-01-30 09:33:59      阅读:60      评论:0      收藏:0      [点我收藏+]

标签:class   art   bfs   模板   next   ext   front   bsp   queue   

  极其简陋的BFS模板

 1 void BFS(???){
 2     queue<node>q;
 3     node start, next;
 4     start = ???;
 5     q.push(start);
 6     
 7     while(!q.empty()){
 8         start = q.front();
 9         q.pop();
10         
11         //一系列迷幻操作
12             next = ???;
13             if(???) 
14                 q.push(next); 
15     }
16 }

 

广搜 BFS()

标签:class   art   bfs   模板   next   ext   front   bsp   queue   

原文地址:https://www.cnblogs.com/0424lrn/p/12241953.html

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