基于邻接表的广度优先遍历

x33g5p2x  于2022-06-27 转载在 其他  
字(2.7k)|赞(0)|评价(0)|浏览(342)

一 需要创建的图

二 代码

  1. package graph;
  2. import java.util.LinkedList;
  3. import java.util.Queue;
  4. import java.util.Scanner;
  5. public class BFSAL {
  6. static final int MaxVnum = 100; // 顶点数最大值
  7. // 访问标志数组,其初值为"false"
  8. static Boolean visited[] = new Boolean[MaxVnum];
  9. static {
  10. for (int i = 0; i < visited.length; i++) {
  11. visited[i] = false;
  12. }
  13. }
  14. static int locatevex(BFSAL.ALGraph G, char x) {
  15. for (int i = 0; i < G.vexnum; i++) // 查找顶点信息的下标
  16. if (x == G.Vex[i].data)
  17. return i;
  18. return -1; // 没找到
  19. }
  20. // 插入一条边
  21. static void insertedge(BFSAL.ALGraph G, int i, int j) {
  22. graph.AdjNode s = new graph.AdjNode();
  23. s.v = j;
  24. s.next = G.Vex[i].first;
  25. G.Vex[i].first = s;
  26. }
  27. // 创建有向图邻接表
  28. static void CreateALGraph(BFSAL.ALGraph G) {
  29. int i, j;
  30. char u, v;
  31. System.out.println("请输入顶点数和边数:");
  32. Scanner scanner = new Scanner(System.in);
  33. G.vexnum = scanner.nextInt();
  34. G.edgenum = scanner.nextInt();
  35. System.out.println("请输入顶点信息:");
  36. for (i = 0; i < G.vexnum; i++)//输入顶点信息,存入顶点信息数组
  37. G.Vex[i].data = scanner.next().charAt(0);
  38. for (i = 0; i < G.vexnum; i++)
  39. G.Vex[i].first = null;
  40. System.out.println("请依次输入每条边的两个顶点u,v");
  41. while (G.edgenum-- > 0) {
  42. u = scanner.next().charAt(0);
  43. v = scanner.next().charAt(0);
  44. i = locatevex(G, u); // 查找顶点 u 的存储下标
  45. j = locatevex(G, v); // 查找顶点 v 的存储下标
  46. if (i != -1 && j != -1)
  47. insertedge(G, i, j);
  48. else {
  49. System.out.println("输入顶点信息错!请重新输入!");
  50. G.edgenum++; // 本次输入不算
  51. }
  52. }
  53. }
  54. // 输出邻接表
  55. static void printg(BFSAL.ALGraph G) {
  56. System.out.println("----------邻接表如下:----------");
  57. for (int i = 0; i < G.vexnum; i++) {
  58. graph.AdjNode t = G.Vex[i].first;
  59. System.out.print(G.Vex[i].data + ": ");
  60. while (t != null) {
  61. System.out.print("[" + t.v + "]\t");
  62. t = t.next;
  63. }
  64. System.out.println();
  65. }
  66. }
  67. // 基于邻接表的广度优先遍历
  68. static void BFS_AL(ALGraph G, int v) {
  69. int u, w;
  70. graph.AdjNode p;
  71. // 创建一个普通队列(先进先出),里面存放int类型
  72. Queue<Integer> Q = new LinkedList<>();
  73. System.out.println(G.Vex[v].data + "\t");
  74. visited[v] = true;
  75. Q.add(v); // 源点 v 入队
  76. // 如果队列不空
  77. while (!Q.isEmpty()) {
  78. u = Q.peek(); // 取出队头元素赋值给u
  79. Q.poll(); // 队头元素出队
  80. p = G.Vex[u].first;
  81. while (p != null) { // 依次检查u的所有邻接点
  82. w = p.v; // w 为 u 的邻接点
  83. if (!visited[w]) { // w 未被访问
  84. System.out.println(G.Vex[w].data + "\t");
  85. visited[w] = true;
  86. Q.add(w);
  87. }
  88. p = p.next;
  89. }
  90. }
  91. }
  92. public static void main(String[] args) {
  93. BFSAL.ALGraph G = new BFSAL.ALGraph();
  94. for (int i = 0; i < G.Vex.length; i++) {
  95. G.Vex[i] = new graph.VexNode();
  96. }
  97. CreateALGraph(G); // 创建有向图邻接表
  98. printg(G); // 输出邻接表
  99. System.out.println("请输入遍历图的起始点:");
  100. Scanner scanner = new Scanner(System.in);
  101. char c = scanner.next().charAt(0);
  102. int v = locatevex(G, c);//查找顶点u的存储下标
  103. if (v != -1) {
  104. System.out.println("广度优先搜索遍历图结果:");
  105. BFS_AL(G, v);
  106. } else
  107. System.out.println("输入顶点信息错!请重新输入!");
  108. }
  109. // 定义邻接点类型
  110. static class AdjNode {
  111. int v; // 邻接点下标
  112. graph.AdjNode next; // 指向下一个邻接点
  113. }
  114. // 定义顶点类型
  115. static class VexNode {
  116. char data; // VexType为顶点的数据类型,根据需要定义
  117. graph.AdjNode first; // 指向第一个邻接点
  118. }
  119. // 定义邻接表类型
  120. static class ALGraph {
  121. graph.VexNode Vex[] = new graph.VexNode[CreateALGraph.MaxVnum];
  122. int vexnum; // 顶点数
  123. int edgenum; // 边数
  124. }
  125. }

三 测试

绿色为输入,白色为输出

相关文章