-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathday25.java
More file actions
32 lines (32 loc) · 748 Bytes
/
Copy pathday25.java
File metadata and controls
32 lines (32 loc) · 748 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
Q1: https://leetcode.com/problems/delete-node-in-a-linked-list/
class Solution {
public void deleteNode(ListNode node) {
if(node==null||node.next==null){
return;
}
node.val=node.next.val;
node.next=node.next.next;
}
}
// TC-O(1)
// SC-O(1)
// Q2: https://bit.ly/3w9pEIt
class Solution {
// Function to insert a node at the end of the linked list.
Node insertAtEnd(Node head, int x) {
// code here
Node temp=new Node(x);
if(head==null){
head=temp;
return head;
}
Node curr=head;
while(curr.next!=null){
curr=curr.next;
}
curr.next=temp;
return head;
}
}
// TC-O(n)
// SC-O(1)