Skip to content

Latest commit

 

History

History
26 lines (15 loc) · 1.33 KB

28_delete-middle-of-linked-list.md

File metadata and controls

26 lines (15 loc) · 1.33 KB

Delete Middle of Linked List

Difficulty: Easy

Points: 2

Given a singly linked list, delete middle of the linked list. For example, if given linked list is 1->2->3 ->4->5 then linked list should be modified to 1->2->4->5.
If there are even nodes, then there would be two middle nodes, we need to delete the second middle element . For example, if given linked list is 1->2->3 ->4 ->5->6 then it should be modified to 1->2->3->5->6.
If the input linked list has single node, then it should return NULL.

Example 1:

Input:
LinkedList: 1->2->3->4->5
Output:
1 2 4 5

Example 2:

Input:
LinkedList: 2->4->6->7->5->1
Output:
2 4 6 5 1

Your Task:
The task is to complete the function deleteMid () which takes head of the linkedlist and return head of the linkedlist with middle element deleted from the linked list. If the linked list is empty or contains single element then it should return NULL .

Expected Time Complexity: O(n).
Expected Auxiliary Space: O(1).

Constraints:
1 <= n <= 105
1 <= value[i] <= 109

Company Tags

Flipkart Amazon Microsoft

Topic Tags

Linked List two-pointer-algorithm Data Structures Algorithms