-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdelete_node_doubly_list.java
117 lines (106 loc) · 1.75 KB
/
delete_node_doubly_list.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
//{ Driver Code Starts
//Initial Template for Java
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();
//System.out.println(list.temp.data);
Node ptr = g.deleteNode(list.head, a1);
list.printList(ptr);
t--;
}
}
}
// } Driver Code Ends
//User function Template for Java
/* Structure of linkedlist node
class Node
{
int data;
Node next;
Node prev;
Node(int d)
{
data = d;
next = prev = null;
}
}
*/
class Solution
{
// function returns the head of the linkedlist
Node deleteNode(Node head,int x)
{
// Your code here
Node temp=head;
for(int i=1;i<x;i++){
temp=temp.next;
}
if(x==1){
head=head.next;
return head;
}
if(temp.next==null){
temp.prev.next=null;
return head;
}
Node prev=temp.prev;
Node next=temp.next;
prev.next=next;
next.prev=prev;
return head;
}
}