Back to Browse

Delete Node in Singly Linked List | GFG Solution in C++ | Delete at Position | Easy Problem

12 views
Apr 9, 2026
0:25

In this video, we solve the GeeksforGeeks problem "Delete in a Singly Linked List". 🔗 Problem Link: https://www.geeksforgeeks.org/problems/delete-a-node-in-single-linked-list/1?sortBy=submissions&category%255B%255D=Linked%2520List&page=1&difficulty%255B%255D=0 📌 Problem Statement: You are given the head of a singly linked list and an integer x. Your task is to delete the xth node (1-based indexing) from the linked list. 👉 You need to correctly update the links after deletion. Example: Input: x = 1, Linked List: 1 2 3 1 7 Output: 2 3 1 7 Explanation: After deleting the node at position 1, the linked list becomes 2 3 1 7. 🎯 In this video you will learn: ✔ Deleting a node at a given position ✔ Handling edge cases (deleting head node) ✔ Linked List traversal and pointer updates ✔ Important interview problem on linked lists 💻 Language Used: C++ 📚 Platform: GeeksforGeeks 📂 Topic: Linked List Tags: delete node singly linked list gfg, delete node at position linked list c++, gfg linked list problems solution, delete nth node linked list, linked list manipulation dsa, dsa linked list practice, geeksforgeeks linked list solution, coding interview linked list problems, pointer manipulation linked list, linked list easy problem gfg #geeksforgeeks #gfg #dsa #datastructures #algorithms #coding #codinginterview #programming #cplusplus #cpp #linkedlist #geeksforgeekssolutions #dsapractice #interviewpreparation #codingpractice

Download

0 formats

No download links available.

Delete Node in Singly Linked List | GFG Solution in C++ | Delete at Position | Easy Problem | NatokHD