-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDelete node in doubly linked list
122 lines (97 loc) · 1.95 KB
/
Delete node in doubly linked list
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
//Delete node in doubly linked list
import java.util.*;
class Node {
int data;
Node next;
Node prev;
Node(int d) {
data = d;
next = prev = null;
}
}
class Delete_Node_From_DLL {
Node head;
Node tail;
void addToTheLast(Node node) {
if(head == null) {
head = node;
tail = node;
}
else {
tail.next = node;
tail.next.prev = tail;
tail = tail.next;
}
}
void printList(Node head) {
Node temp = head;
while(temp != null) {
System.out.print(temp.data + " ");
temp = temp.next;
}
System.out.println();
}
public static void main(String args[]) {
Scanner sc = new Scanner(System.in);
int t = sc.nextInt();
while(t > 0) {
int n = sc.nextInt();
Delete_Node_From_DLL list = new Delete_Node_From_DLL();
int a1 = sc.nextInt();
Node head = new Node(a1);
list.addToTheLast(head);
for(int i = 1; i < n; i++) {
int a = sc.nextInt();
list.addToTheLast(new Node(a));
}
a1 = sc.nextInt();
Solution g = new Solution();
Node ptr = g.deleteNode(list.head, a1);
list.printList(ptr);
t--;
}
}
}
class Node {
int data;
Node next;
Node prev;
Node(int d) {
data = d;
next = prev = null;
}
}
class Solution {
Node deleteNode(Node head, int x) {
Node curr = head;
int count = 0;
while(curr != null) {
count++;
if(count == x) {
break;
}
curr = curr.next;
}
Node back = curr.prev;
Node front = curr.next;
if(back == null && front == null) {
return null;
}
else if(back == null) {
Node temp = head;
head = head.next;
temp.next = null;
}
else if(front == null) {
back.next = null;
curr.prev = null;
}
else {
back.next = front;
front.prev = back;
curr.prev = null;
curr.next = null;
}
return head;
}
}