@@ -26,6 +26,37 @@ MST.java:
26
26
27
27
NOTE: the current directory must contain rbk directory with rbk/Graph.java
28
28
29
+ ----------------------------------------------------------------------------
30
+ # OBSERVATIONS
31
+ 1. In BinaryHeap - add(x), and remove() throws exception when they
32
+ encounter full and empty queue conditions respectively. But, offer(x),
33
+ and poll() silently returns false for the above conditions.
34
+
35
+ 2. In BinaryHeap - we could have used resize() as we try to add an element to
36
+ fully occupied queue. But, as we are dealing with fixed graph, the
37
+ resize() is never being called.
38
+
39
+ 3. In MST Algorithms - the early exit optimization is applied but, when
40
+ tested it appears that Prim3 doesn't need such optimization.
41
+ Note that this optimization only helps in saving computations after you add
42
+ the last (n-1)th edge to the MST.
43
+
44
+ 4. For Prim's Algorithm - Take 2:
45
+ We may not need to use the constructor MSTVertex(MSTVertex u).
46
+ As we could store the original vertex information for each MSTVertex,
47
+ we can make copies of new MSTVertices out of the original Vertex,
48
+ instead of it's MSTVertex copy.
49
+ For e.g. if we have Vertex v, we can use -
50
+ MSTVertex vCopy = new MSTVertex(v) instead of
51
+ MSTVertex vCopy = new MSTVertex(get(v)).
52
+
53
+ These copies are used to store different distance and parent values
54
+ whereas, get(v) has the information about 'seen'ness of all MSTVertices
55
+ made out of v.
56
+
57
+ 5. For Prim2 and Prim3, we are storing the information about the edge
58
+ which reaches out to this MSTVertex. It is used to form mst<Edge>.
59
+
29
60
----------------------------------------------------------------------------
30
61
# RESULTS
31
62
+------------------------------------------------------------------------+
82
113
Existing Processor: Intel® Core™ i5-8250U CPU @ 1.60GHz × 8
83
114
Memory: 7.5 GiB
84
115
85
- - All necessary results are stored in the result directory for reference.
116
+ - All necessary results are stored in the result directory for reference.
117
+
118
+ - These files are not good examples for determining efficiency of Prim3
119
+ over Prim1. For sparse graphs like these, Prim1 could beat Prim3, but
120
+ when graph grows dense Prim3 could easily beat Prim1.
121
+
0 commit comments