Thanks to visit codestin.com
Credit goes to github.com

Skip to content
This repository was archived by the owner on Sep 7, 2025. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions data-structures/linkedList.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,38 @@ class LinkedList {
}
currentNode->next = newNode;
}
void deleteNode(int key) {
if (head == NULL) {
cout << "List is empty. Nothing to delete." << endl;
return;
}

// If head node itself holds the key
if (head->data == key) {
Node* temp = head;
head = head->next;
delete temp;
return;
}

// Find the node to be deleted
Node* current = head;
Node* prev = NULL;
while (current != NULL && current->data != key) {
prev = current;
current = current->next;
}

// If key was not present
if (current == NULL) {
cout << "Node with value " << key << " not found." << endl;
return;
}

// Unlink the node from linked list
prev->next = current->next;
delete current;
}

void printList() {
Node* currentNode = this->head;
Expand Down