测试数据:
5 6
0 1 5
0 2 3
1 2 4
2 4 2
2 3 1
1 4 1

输出:
2 3 1
1 4 1
2 4 2
0 2 3

比如初始化的时候ABC的祖先是他自己,先加入了AB这条边,这两个点的的父亲不一样,可以加入这条边,同时将A的祖先设置为B的祖先。同样AC加入也是这样,将C的父亲设为A的祖先B。这时候发现ABC相互可达,他们的祖先都是一个B。这个时候如果要添加BC这条边,查看BC的祖先,发现祖先一样,说明这两个点是可达的,那么如果添加这条边就会产生回路。

总的来说,将相邻的边所有顶点的祖先设置为同一个,如果两个顶点的祖先是同一个,那么就表明这两个点是可达的。那么如果还要添加这个以这两个顶点为顶点的边,就会产生回路。

  1. import java.io.BufferedReader;
  2. import java.io.FileReader;
  3. public class Kruskal {
  4. static int father[];
  5. static Edge edges[];
  6. static Edge tree[];
  7. static int verNum,edgeNum;
  8. public static void main(String[] args) throws Exception {
  9. readData();
  10. initFather();
  11. getTree();
  12. }
  13. /**
  14. * 读取文本的数据
  15. * @throws Exception
  16. */
  17. private static void readData()throws Exception {
  18. // TODO 自动生成的方法存根
  19. BufferedReader bf=new BufferedReader(new FileReader("d:/testGraphic.txt"));
  20. String strings[]=bf.readLine().split(" ");
  21. verNum=Integer.parseInt(strings[0]);
  22. edgeNum=Integer.parseInt(strings[1]);
  23. edges=new Edge[edgeNum];
  24. tree=new Edge[verNum-1];
  25. for (int i = 0; i < edgeNum; i++) {
  26. strings=bf.readLine().split(" ");
  27. edges[i]=new Edge(Integer.parseInt(strings[0]),Integer.parseInt(strings[1]),Integer.parseInt(strings[2]));
  28. }
  29. sort();
  30. bf.close();
  31. }
  32. /**
  33. * 将各条边按照权值从小到大进行排列
  34. */
  35. public static void sort()
  36. {
  37. for (int i = 0; i < edges.length; i++) {
  38. for (int j = i+1; j < edges.length; j++) {
  39. if(edges[j].weight<edges[i].weight)
  40. {
  41. Edge temp=edges[j];
  42. edges[j]=edges[i];
  43. edges[i]=temp;
  44. }
  45. }
  46. }
  47. }
  48. /**
  49. * 初始化每个点的父亲设置为自己
  50. */
  51. private static void initFather() {
  52. // TODO 自动生成的方法存根
  53. father=new int[verNum];
  54. for (int i = 0; i < father.length; i++) {
  55. father[i]=i;
  56. }
  57. }
  58. /**
  59. * 获得最小生成树
  60. */
  61. private static void getTree() {
  62. // TODO 自动生成的方法存根
  63. int edgesIndex=0;
  64. int treeIndex=0;
  65. while(true)
  66. {
  67. //如果边数够了跳出循环
  68. if(treeIndex==verNum-1)
  69. break;
  70. int father1=findFather(edges[edgesIndex].from);
  71. int father2=findFather(edges[edgesIndex].end);
  72. //如果两个的点的父亲不相同 则说明不连通
  73. if(father1!=father2)
  74. {
  75. tree[treeIndex++]=edges[edgesIndex];
  76. father[father1]=father2;
  77. }
  78. edgesIndex++;
  79. }
  80. //输出树
  81. printTree();
  82. }
  83. private static void printTree() {
  84. // TODO 自动生成的方法存根
  85. for (int i = 0; i < tree.length; i++) {
  86. Edge edge=tree[i];
  87. System.out.println(edge);
  88. }
  89. }
  90. /**
  91. * 查找一个点的父亲
  92. * @param i
  93. * @return
  94. */
  95. public static int findFather(int i)
  96. {
  97. //如果一个点的父亲是自己 返回
  98. if(father[i]==i)
  99. return i;
  100. //否则一直查找他的顶层。
  101. else
  102. {
  103. int f=i;
  104. while(father[f]!=f)
  105. {
  106. f=father[f];
  107. }
  108. father[i]=father[f];
  109. return father[f];
  110. }
  111. }
  112. }
  113. class Edge
  114. {
  115. public int from;
  116. public int end;
  117. public int weight;
  118. public Edge(int from,int end,int weight)
  119. {
  120. this.from=from;
  121. this.end=end;
  122. this.weight=weight;
  123. }
  124. public String toString()
  125. {
  126. return this.from+" "+this.end+" "+this.weight;
  127. }
  128. }

测试数据:
5 6
0 2 3
1 2 4
2 4 2
2 3 1
1 4 1

输出:
0 2 3
2 3 1
2 4 2
4 1 1

  1. import java.io.BufferedReader;
  2. import java.io.FileReader;
  3. public class Prime {
  4. static int array[][];
  5. static int verNum,edgeNum;
  6. /**
  7. * 读取文本数据
  8. * @throws Exception
  9. */
  10. public static void readData() throws Exception
  11. {
  12. BufferedReader bf=new BufferedReader(new FileReader("d:/testGraphic.txt"));
  13. String strings[]=bf.readLine().split(" ");
  14. verNum=Integer.parseInt(strings[0]);
  15. edgeNum=Integer.parseInt(strings[1]);
  16. array=new int [verNum][verNum];
  17. //用矩阵表示两个点之间的权值,如果是相同点标志为0 如果两个点不关联设为100
  18. for (int i = 0; i < array.length; i++) {
  19. for (int j = 0; j < array.length; j++) {
  20. if(i==j)
  21. array[i][j]=0;
  22. else
  23. array[i][j]=100;
  24. }
  25. }
  26. //根据文本进行赋值
  27. for (int i = 0; i < edgeNum; i++) {
  28. strings=bf.readLine().split(" ");
  29. int a=Integer.parseInt(strings[0]);
  30. int b=Integer.parseInt(strings[1]);
  31. int c=Integer.parseInt(strings[2]);
  32. array[a][b]=c;
  33. array[b][a]=c;
  34. }
  35. }
  36. /**
  37. * 打印生成最小树
  38. * @param tree
  39. */
  40. public static void printTree(int tree[][])
  41. {
  42. for(int a[]:tree)
  43. {
  44. for(int b:a)
  45. {
  46. System.out.print(b+" ");
  47. }
  48. System.out.println();
  49. }
  50. }
  51. public static void main(String[] args) throws Exception
  52. {
  53. readData();
  54. //创建最小生成树
  55. int tree[][]=new int [verNum-1][3];
  56. //取一个点放到点集U
  57. int k=0;
  58. CloseEdge edge[]=new CloseEdge[verNum];
  59. //其他点和点K的权值
  60. for (int i = 0; i < verNum; i++) {
  61. edge[i]=new CloseEdge(k,array[k][i]);
  62. }
  63. edge[k]=new CloseEdge(k,0);
  64. //执行次数为边的数量
  65. for (int o = 0; o< verNum-1; o++)
  66. {
  67. int min=Integer.MAX_VALUE;
  68. //在V-U中的点中找一个和U中点关联的并且权值最小的加入到U
  69. for (int i = 0; i <verNum; i++) {
  70. if(edge[i].weight!=0&&edge[i].weight<min)
  71. {
  72. min=edge[i].weight;
  73. k=i;
  74. }
  75. }
  76. //将新选取点的权值存到数中
  77. tree[o][2]=edge[k].weight;
  78. //设置选中的点到U的权值为0,表示已经在U中
  79. edge[k].weight=0;
  80. //将新增加的变记录下来,第0个点是与新顶点相关联的的点,第一个顶点是新的顶点
  81. tree[o][0]=edge[k].index;
  82. tree[o][1]=k;
  83. //因为有新顶点加入,所以重新设置V-U与点集U中点关联的最小的权值
  84. for (int i = 0; i < edge.length; i++) {
  85. if(array[k][i]<edge[i].weight)
  86. edge[i]=new CloseEdge(k,array[k][i]);
  87. }
  88. }
  89. printTree(tree);
  90. }
  91. }
  92. class CloseEdge
  93. {
  94. int index;
  95. int weight;
  96. /**
  97. *
  98. * @param index
  99. * @param weight
  100. */
  101. public CloseEdge(int index,int weight)
  102. {
  103. this.index=index;
  104. this.weight=weight;
  105. }
  106. }

版权声明:本文为-new原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://www.cnblogs.com/-new/p/6762670.html