模拟队列最好用循环队列原因
void bfs () { queue 初始化 while(hh <= tt) //队列非空 { t = q[hh ++ ]; //更新队头 // 扩展队头 + 放入队列 } }
数组模拟队列的bfs