Skip to content

delete function added #381

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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