-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRankSeq.java
96 lines (82 loc) · 2.2 KB
/
RankSeq.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
public class RankSeq
{
//private int rank;
private int size;
private Node header;
private Node trailer;
public RankSeq()
{
// Define the header and trailer Nodes
header = new Node(-1);
trailer = new Node(-1);
// Link the header and trailer to each other
header.setNext(trailer);
trailer.setPrev(header);
// Set the initial size of the sequence.
size = 0;
}
public int size()
{
return size;
}
public boolean isEmpty()
{
return size < 1;
}
private void checkRank (int rank) throws BoundaryViolationException
{
if (rank < 1 || rank > 9)//size()+1)
{
throw new BoundaryViolationException ("Invalid rank");
}
}
public Node nodeAtRank (int rank) throws BoundaryViolationException
{
Node node;
//System.out.println("CALL: nodeAtRank(" + rank + "),\t Size: " + size() + "\tisEmpty: " + isEmpty());
if (!isEmpty())
{
checkRank(rank);
}
if (rank <= size()/2) {
node = header.getNext();
for (int i=0; i < rank; i++)
{
node = node.getNext();
}
}
else
{
node = trailer.getPrev();
for (int i=0; i < size()-rank-1; i++)
{
node = node.getPrev();
}
}
return node;
}
public void replaceItem(int rank, int data) throws BoundaryViolationException
{
Node node = nodeAtRank(rank);
node.setData(data);
}
public void insertItem (int rank, int data) throws BoundaryViolationException
{
Node prev = nodeAtRank(rank);
Node next = prev.getNext();
Node node = new Node(data, next, prev);
next.setPrev(node);
prev.setNext(node);
size++;
}
public int deleteItem (int rank) throws BoundaryViolationException
{
Node node = nodeAtRank(rank);
Node next = node.getNext();
Node prev = node.getPrev();
prev.setNext(next);
next.setPrev(prev);
size--;
return node.getData();
}
}