-
Notifications
You must be signed in to change notification settings - Fork 0
/
DoublyLinkedList.java
137 lines (124 loc) · 3.21 KB
/
DoublyLinkedList.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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
package linkedListCrypto;
public class DoublyLinkedList <T> {
private DoubleNode<T> head;
private DoubleNode<T> tail;
public DoublyLinkedList() {
head=null;
tail=null;
}
public void addAtFront(T c){
if (head==null){
head=new DoubleNode<T>(null,c,null);
tail=head;
return;
}
DoubleNode<T> temp=new DoubleNode<T>(null,c,head);
head.setPrev(temp);
head=temp;
}
public T get(int index) {
DoubleNode<T> current=head;
while(current !=null && index>0){
index--;
current=current.getNext();
} if(current == null){
return null;
} else {
return current.getC();
}
}
public void addAtEnd(T c){
if (tail==null){
tail=new DoubleNode<T>(null,c,null);
head=tail;
return;
}
DoubleNode<T> temp=new DoubleNode<T>(tail,c,null);
tail.setNext(temp);
tail=temp;
}
public int countNodes() {
int count=0;
DoubleNode<T> current=head;
while(current !=null){
count++;
current=current.getNext();
}
return count;
}
public T removeAtEnd(){
if(head==null){
return null;
}
T data=tail.getC();
tail=tail.getPrev();
if(tail==null){
head=null;
}
else {
tail.setNext(null);
}
return data;
}
public T removeFromFront(){
if(head==null){
return null;
}
T data=head.getC();
head=head.getNext();
if(head==null){
tail=null;
}
else {
head.setPrev(null);
}
return data;
}
public void reverse(){
DoubleNode<T> ch=head;
DoubleNode<T> ct=tail;
while((ch!=ct)&&(ct.getNext()!=ch)){
T temp=ct.getC();
ct.setC(ch.getC());
ch.setC(temp);
ch=ch.getNext();
ct=ct.getPrev();
}
}
public boolean isEmpty(){
return head==null;
}
public boolean delete(T c){
if(head==null){
return false;
}
DoubleNode<T> current=head;
while(current!=null) {
if(current.getC()==c){
DoubleNode<T> previous = current.getPrev();
DoubleNode<T> next = current.getNext();
if(previous!=null) {
previous.setNext(next);
}
if(next!=null){
next.setPrev(previous);
}
return true;
}
current=current.getNext();
}
return false;
}
public String toString(){
DoubleNode<T> current=head;
String output = "";
while(current !=null){
output+=current.getC();
current=current.getNext();
}
return output;
}
public DoubleNode<T> getHead() {
return head;
}
}