-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathBidirectionalNode.java
More file actions
95 lines (85 loc) · 1.85 KB
/
BidirectionalNode.java
File metadata and controls
95 lines (85 loc) · 1.85 KB
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/**
* BidirectionalNode represents a node in a linked list.
*
* @author lsevigny
* @version 4.0
*/
public class BidirectionalNode<E> {
private BidirectionalNode<E> next;
private BidirectionalNode<E> previous;
private E element;
/**
* Creates an empty node.
*/
public BidirectionalNode() {
previous = null;
next = null;
element = null;
}
/**
* Creates a node storing the specified element.
*
* @param elem
* the element to be stored within the new node
*/
public BidirectionalNode(E elem) {
previous = null;
next = null;
element = elem;
}
/**
* Returns the node that precedes this one.
*
* @return the node that precedes the current one
*/
public BidirectionalNode<E> getPrevious() {
return previous;
}
/**
* Sets the node that precedes this one.
*
* @param node
* the node to be set to precede the current one
*/
public void setPrevious(BidirectionalNode<E> node) {
previous = node;
}
/**
* Returns the node that follows this one.
*
* @return the node that follows the current one
*/
public BidirectionalNode<E> getNext() {
return next;
}
/**
* Sets the node that follows this one.
*
* @param node
* the node to be set to follow the current one
*/
public void setNext(BidirectionalNode<E> node) {
next = node;
}
/**
* Returns the element stored in this node.
*
* @return the element stored in this node
*/
public E getElement() {
return element;
}
/**
* Sets the element stored in this node.
*
* @param elem
* the element to be stored in this node
*/
public void setElement(E elem) {
element = elem;
}
@Override
public String toString() {
return "Element: " + element.toString() + " Has previous: " + (previous != null) + " Has next: " + (next != null);
}
}