-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathminedgesreverse.java
79 lines (62 loc) · 1.69 KB
/
minedgesreverse.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
package graphs;
import java.util.PriorityQueue;
public class minedgesreverse {
public static void main(String[] args) {
// TODO Auto-generated method stub
int[][] adj = { { 0, 1, 0, 0, 0, 0, 0 }, { 0, 0, 0, 0, 0, 1, 0 }, { 0, 1, 0, 1, 0, 0, 0 },
{ 0, 0, 0, 0, 0, 0, 0 }, { 0, 0, 0, 0, 0, 1, 1 }, { 0, 0, 0, 0, 0, 0, 0 }, { 0, 0, 0, 1, 0, 0, 0 }, };
int[][] newadj = new int[adj.length][adj[0].length];
for (int i = 0; i < newadj.length; i++) {
for (int j = 0; j < newadj[0].length; j++) {
newadj[i][j] = -1;
}
}
for (int i = 0; i < newadj.length; i++) {
for (int j = 0; j < newadj[0].length; j++) {
if (adj[i][j] == 1) {
newadj[i][j] = 0;
newadj[j][i] = 1;
}
System.out.print(newadj[i][j] + " ");
}
System.out.println();
}
dijkstra(0, 6, newadj);
}
public static class pair implements Comparable<pair> {
int vname;
int cost;
String path;
pair(int v, int c, String s) {
this.vname = v;
this.cost = c;
this.path = s;
}
@Override
public int compareTo(pair o) {
// TODO Auto-generated method stub
return this.cost - o.cost;
}
}
public static void dijkstra(int src, int dest, int[][] adj) {
PriorityQueue<pair> queue = new PriorityQueue<>();
int[] vis = new int[adj.length];
queue.add(new pair(src, 0, "" + src));
while (!queue.isEmpty()) {
pair rv = queue.remove();
if (vis[rv.vname] == 1) {
continue;
}
vis[rv.vname] = 1;
if (rv.vname == dest) {
System.out.println(rv.path + " @ " + rv.cost);
}
int[] nbr = adj[rv.vname];
for (int i = 0; i < nbr.length; i++) {
if (nbr[i] > -1 && vis[i] == 0) {
queue.add(new pair(i, rv.cost + nbr[i], rv.path + i));
}
}
}
}
}