Skip to content

Commit 14f0b67

Browse files
committed
Documentation - more README
1 parent af5b7bb commit 14f0b67

File tree

2 files changed

+46
-1
lines changed

2 files changed

+46
-1
lines changed

BinaryHeap.java

+9
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,15 @@
1111

1212
import java.util.NoSuchElementException;
1313

14+
/**
15+
* Implementing Priority Queue (as Binary Heaps) using Arrays.
16+
* NOTE: add(x) and remove() returns true for successful
17+
* operations, else throws an Exception.
18+
*
19+
* IndexedHeap is extension of Binary Heap with decreaseKey()
20+
* implementation thereby extending Index interface to update
21+
* indices appropriately.
22+
*/
1423
public class BinaryHeap<T extends Comparable<? super T>> {
1524
Comparable[] pq; // Priority Queue
1625
int capacity; // maximum size of Priority Queue

README.txt

+37-1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,37 @@ MST.java:
2626

2727
NOTE: the current directory must contain rbk directory with rbk/Graph.java
2828

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+
2960
----------------------------------------------------------------------------
3061
# RESULTS
3162
+------------------------------------------------------------------------+
@@ -82,4 +113,9 @@ NOTE:
82113
Existing Processor: Intel® Core™ i5-8250U CPU @ 1.60GHz × 8
83114
Memory: 7.5 GiB
84115

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

Comments
 (0)