Delete Kth Element of DLL

Linked-List Fundamentals (Doubly LL) Easy

Given the head of a doubly linked list and an integer k, remove the node at the kth position of the linked list and return the head of the modified list.

Examples:

Input: head -> 2 <-> 5 <-> 7 <-> 9, k = 2

Output: head -> 2 <-> 7 <-> 9

Explanation: The node with value 5 was removed.

Input: head -> 2 <-> 5 <-> 7, k = 1

Output: head -> 5 <-> 7

Explanation: The node with value 2 was removed, note that the head was modified.

Input: head -> 2 <-> 5 <-> 7, k = 3

Constraints

  • n == Number of nodes in the linked list
  • 1 <= n <= 100
  • 0 <= ListNode.val <= 100
  • 1 <= k <= n

Hints

  • If k=1: Update the head pointer to head.next to remove the head node. For k>1: Traverse the list to find the (k−1)-th node (node preceding the target node).
  • Use a pointer to traverse the list and keep a count of the current position. Stop when the pointer reaches the (k−1)-th node, i.e., just before the node to be deleted.

Company Tags

Docker Square Bain & Company Activision Blizzard Zoho Airbnb Optum Rakuten Goldman Sachs Medtronic NVIDIA Western Digital Epic Systems Teladoc Health Red Hat Oracle Walmart Boston Consulting Group OYO Rooms Zomato Wayfair Roblox PwC Stripe Target TCS Cognizant Accenture Infosys Capgemini Wipro