forked from super30admin/Linked-List-2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeleteNode.java
127 lines (110 loc) · 2.1 KB
/
deleteNode.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
// { Driver Code Starts
import java.util.*;
class Node
{
int data ;
Node next;
Node(int d)
{
data = d;
next = null;
}
}
class Delete_Node
{
Node head;
Node tail;
void printList(Node head)
{
Node tnode = head;
while(tnode != null)
{
System.out.print(tnode.data+ " ");
tnode = tnode.next;
}
System.out.println();
}
void addToTheLast(Node node)
{
if(head == null)
{
head = node;
tail = node;
}
else
{
tail.next = node;
tail = node;
}
}
Node search_Node(Node head, int k)
{
Node current = head;
while(current != null)
{
if(current.data == k)
break;
current = current.next;
}
return current;
}
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 llist = new Delete_Node();
//int n=Integer.parseInt(br.readLine());
int a1=sc.nextInt();
Node head= new Node(a1);
llist.addToTheLast(head);
for (int i = 1; i < n; i++)
{
int a = sc.nextInt();
llist.addToTheLast(new Node(a));
}
int k = sc.nextInt();
Node del = llist.search_Node(llist.head,k);
Solution g = new Solution();
if(del != null && del.next != null)
{
g.deleteNode(del);
}
llist.printList(llist.head);
t--;
}
}
}
// } Driver Code Ends
/*
class Node
{
int data ;
Node next;
Node(int d)
{
data = d;
next = null;
}
}
*/
//Function to delete a node without any reference to head pointer.
// Time Complexity: O(1) as we are given the node pointer and we just updated its data and next to the next node
// Space Complexity: O(1) no additional data structure used
// Did you complete it on Geeks for Geeks: Yes
// Any problems faced: No
// Write your approach here
// Idea here is that we are given node and not the head,
// so istead of traversing we need to update the value and next of current node
// to what is present in next node.
class Solution
{
void deleteNode(Node del)
{
// Your code here
del.data = del.next.data;
del.next = del.next.next;
}
}