forked from CodersForLife/Data-Structures-Algorithms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLinkedList.java
More file actions
222 lines (198 loc) · 3.64 KB
/
Copy pathLinkedList.java
File metadata and controls
222 lines (198 loc) · 3.64 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
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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
public class LinkedList {
public Node head = null;
public int length(){ //returns length of linkedlist
int cnt = 0;
Node temp = this.head;
while(temp != null){
temp = temp.next;
cnt++;
}
return cnt;
}
public int sumOfElements(){ //returns the sum of elements in linkedlist
int sum = 0;
Node temp = this.head;
while(temp != null){
sum += temp.data;
temp = temp.next;
}
return sum;
}
public void searchNode(Node n){
Node temp = this.head;
int cnt = 0;
while(temp != null){
if(temp == n){
System.out.println("Node found at pos: " + cnt);
return;
}
temp=temp.next;
cnt++;
}
System.out.println("Node does not exist");
}
// Deletes Nodes at even position
public void deleteEven(){
Node temp = this.head;
int cnt = 0;
while(cnt != this.length()){
if(cnt%2 == 0){
this.deleteAtPos(cnt);
}
cnt++;
}
}
public void insertAtHead(int value){
Node newNode = new Node(value);
Node temp = this.head;
if(temp == null){
this.head = newNode;
}
else{
newNode.next = this.head;
this.head = newNode;
}
}
public void insertAtTail(int value){
Node newNode = new Node(value);
Node temp = this.head;
if(temp == null){
this.head = newNode;
}
else{
while(temp.next != null){
temp = temp.next;
}
temp.next = newNode;
}
}
public void insertAtPos(int value, int k){
Node temp = this.head;
if(k == 0){
this.insertAtHead(value);
}
else{
int cnt = 0;
Node newNode = new Node(value);
Node prev = temp;
while(temp!=null && k!=cnt){
prev = temp;
temp = temp.next;
cnt++;
}
if(temp == null){
System.out.println("Invalid position");
}
else{
prev.next = newNode;
newNode.next = temp;
}
}
}
public void deleteAtPos(int k){
Node temp = this.head;
if(k == 0){
temp = temp.next;
this.head.next = null;
this.head = temp;
}
else{
Node prev = temp;
int cnt = 0;
while(temp.next != null && k!=cnt){
prev = temp;
temp = temp.next;
cnt++;
}
if(k == this.length() - 1){
temp.next = null;
}
else if(k == cnt){
prev.next = temp.next;
temp.next = null;
}
else{
System.out.println("Invalid Position");
}
}
}
public void deleteValue(int value){
Node temp = this.head;
Node prev = temp;
while(temp.data != value && temp != null){
prev = temp;
temp = temp.next;
}
if(temp == null){
System.out.println("Value is not present");
}
else{
prev.next = temp.next;
temp.next = null;
}
}
public void print(){
if(this.head == null){
System.out.println("Empty list");
}
else{
Node temp = this.head;
while(temp != null){
System.out.print(temp.data + " ");
temp = temp.next;
}
}
}
public static LinkedList Concat(LinkedList L1, LinkedList L2){
LinkedList L = new LinkedList();
L.head = L1.head;
Node temp = L.head;
while(temp.next != null){
temp = temp.next;
}
temp.next = L2.head;
return L;
}
private void reverse(Node temp, Node prev){
if(temp == null){
this.head = prev;
return;
}
else{
reverse(temp.next,temp);
temp.next = prev;
return;
}
}
public void reverseList(){
this.reverse(this.head,null);
}
public void split(LinkedList l1,LinkedList l2){
Node temp = this.head;
int cnt = 1;
l1.head = this.head;
while(temp != null){
if(cnt%2 == 0){
l1.insertAtTail(temp.data);
}
else{
l2.insertAtTail(temp.data);
}
}
}
}
class Node {
int data;
Node next;
Node prev;
Node(){
data = 0;
next = null;
prev = null;
}
Node(int data){
this.data = data;
this.next = null;
this.prev = null;
}
}