This repository has been archived by the owner on Apr 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DoubleEndedLinkedList.java
172 lines (81 loc) · 2.5 KB
/
DoubleEndedLinkedList.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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
public class DoubleEndedLinkedList {
Neighbor firstLink;
Neighbor lastLink;
public void insertInFirstPosition(String houseOwnerName, int houseNumber) {
Neighbor theNewLink = new Neighbor(houseOwnerName, houseNumber);
if(isEmpty())
lastLink = theNewLink;
else
firstLink.pre = theNewLink;
theNewLink.next = firstLink;
firstLink = theNewLink;
}
public void insertInLastPosition(String houseOwnerName, int houseNumber) {
Neighbor theNewLink = new Neighbor(houseOwnerName, houseNumber);
if(isEmpty())
firstLink = theNewLink;
else {
lastLink.next = theNewLink;
theNewLink.pre = lastLink;
}
lastLink = theNewLink;
}
public boolean insertAfterKey(String houseOwnerName, int houseNumber, int key) {
Neighbor newLink = new Neighbor(houseOwnerName,houseNumber);
Neighbor currentNeighbor = firstLink;
while(currentNeighbor.houseNumber!=key) {
currentNeighbor = currentNeighbor.next;
if(currentNeighbor==null)
return false;
}
if(currentNeighbor == lastLink) {
newLink.next = null;
lastLink = newLink;
}
else {
newLink.next = currentNeighbor.next;
currentNeighbor.next.pre = newLink;
}
newLink.pre = currentNeighbor;
currentNeighbor.next = newLink;
return true;
}
public boolean isEmpty() {
return (firstLink == null);
}
public void display() {
Neighbor theLink = firstLink;
while(theLink!=null) {
theLink.display();
System.out.println("Next Link is "+theLink.next);
theLink = theLink.next;
System.out.println();
}
}
public static void main(String[] args) {
DoubleEndedLinkedList linkedlist = new DoubleEndedLinkedList();
linkedlist.insertInFirstPosition("Vasu Dixit", 5);
linkedlist.insertInFirstPosition("Kirti", 5);
linkedlist.insertInFirstPosition("Richi Chutiya", 7);
linkedlist.insertInFirstPosition("Nagesh", 2);
linkedlist.display();
linkedlist.insertAfterKey("Someone", 6, 2);
linkedlist.display();
}
}
class Neighbor {
public String homeOwnerName;
public int houseNumber;
public Neighbor next;
public Neighbor pre;
public Neighbor(String homeOwnerName, int houseNumber) {
this.homeOwnerName = homeOwnerName;
this.houseNumber = houseNumber;
}
public void display() {
System.out.println(homeOwnerName+" : "+houseNumber);
}
public String toString() {
return homeOwnerName;
}
}