模板bfs是一层一层搜,用于解决权重一致的最短路问题 模板Queue<> q = new LinkedList<>();q.offer(0);while (!q.isEmpty) { t = q.poll(); for (...) { if () { q.offer(); ... } }}