-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDay25.java
More file actions
32 lines (29 loc) · 863 Bytes
/
Copy pathDay25.java
File metadata and controls
32 lines (29 loc) · 863 Bytes
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
//Problem:Delete node in a linked list
//https://leetcode.com/problems/delete-node-in-a-linked-list/description/
Approach:Assign value of next node to node to be deleted and then delete the next node.
class Solution {
public void deleteNode(ListNode node) {
node.val=node.next.val;
node.next=node.next.next;
}
}
//TC:O(1)
//SC:O(1)
//Problem:Linked List insertion at end
//https://www.geeksforgeeks.org/problems/linked-list-insertion-1587115620/1
class Solution {
// Function to insert a node at the end of the linked list.
Node insertAtEnd(Node head, int x) {
Node temp=head;
Node newnode=new Node(x);
if(head==null)
return newnode;
while(temp.next!=null){
temp=temp.next;
}
temp.next=newnode;
return head;
}
}
//TC:o(n)
//SC:O(1)