-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDeleteNodeInLL.java
More file actions
84 lines (70 loc) · 2.2 KB
/
DeleteNodeInLL.java
File metadata and controls
84 lines (70 loc) · 2.2 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
// Delete Node In LL
// Send Feedback
// You have been given a linked list of integers. Your task is to write a function that deletes a node from a given position, 'POS'.
// Note :
// Assume that the Indexing for the linked list always starts from 0.
// If the position is greater than or equal to the length of the linked list, you should return the same linked list without any change.
// Illustration :
// The following images depict how the deletion has been performed.
// Image-I :
// Alt txt
// Image-II :
// Alt txt
// Input format :
// The first line contains the elements of the linked list separated by a single space.
// The second line contains the integer value of 'POS'. It denotes the position in the linked list from where the node has to be deleted.
// Remember/Consider :
// While specifying the list elements for input, -1 indicates the end of the singly linked list and hence, would never be a list element
// Output format :
// Print the resulting linked list of integers in a row, separated by a single space.
// Note:
// You are not required to print the output, it has already been taken care of. Just implement the function.
// Sample Input 1 :
// 3 4 5 2 6 1 9 -1
// 3
// Sample Output 1 :
// 3 4 5 6 1 9
// Explanation of Sample Output 1 :
// The data in the node with index 3 is 2 which has been removed.
// Sample Input 2 :
// 3 4 5 2 6 1 9 -1
// 0
// Sample Output 2 :
// 4 5 2 6 1 9
// Constraints :
// 0 <= N <= 10^5
// POS >= 0
// Time Limit: 1sec
// Expected Complexity :
// Time Complexity : O(N)
// Space Complexity : O(1)
public class DeleteNodeInLL {
}
class Node<T> {
T data;
Node<T> next;
public Node(T data) {
this.data = data;
}
}
class Solution {
public static Node<Integer> deleteNode(Node<Integer> head, int pos) {
// Write your code here.
if (head == null) {
return head;
}
if (pos == 0) {
head = head.next;
return head;
}
Node<Integer> prev = head;
while (pos > 1 && prev != null) {
prev = prev.next;
pos--;
}
if (prev != null && prev.next != null) {
prev.next = prev.next.next;
}
return head;
}
}