-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPairNode.java
More file actions
31 lines (28 loc) · 863 Bytes
/
Copy pathPairNode.java
File metadata and controls
31 lines (28 loc) · 863 Bytes
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
package DataStructures.Heap;
import DataStructures.Comparable;
/**
* Public class for use with PairHeap. It is public
* only to allow references to be sent to decreaseKey.
* It has no public methods or members.
* @author Mark Allen Weiss
* @see PairHeap
*/
public class PairNode
{
/**
* Construct the PairNode.
* @param theElement the value stored in the node.
*/
PairNode( Comparable theElement )
{
element = theElement;
leftChild = null;
nextSibling = null;
prev = null;
}
// Friendly data; accessible by other package routines
Comparable element;
PairNode leftChild;
PairNode nextSibling;
PairNode prev;
}