-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathLinkedListDeletion.cpp
More file actions
90 lines (73 loc) · 1.64 KB
/
LinkedListDeletion.cpp
File metadata and controls
90 lines (73 loc) · 1.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
#include <iostream>
using namespace std;
/* creating a node structure in C/C++ */
struct Node {
int data;
struct Node *next;
};
/* defining head as null as there is no node in the list initially. */
struct Node* head = NULL;
void push(int data) {
Node *temp;
temp = head;
/* creating a node and assigning data to it and make its next as null */
struct Node* new_node = (struct Node*) malloc(sizeof(struct Node));
new_node->data = data;
new_node->next = NULL;
/* check if it's empty make new_node as head */
if(head == NULL) {
head = new_node;
}
/* otherwise move upto the last and then connect last node with the new_node */
else {
while(temp->next != NULL) {
temp = temp->next;
}
temp->next = new_node;
}
}
void deletNode(int data) {
Node *temp, *prev;
temp = head;
prev = NULL;
if(temp == NULL) {
cout << "The list is empty, the node can't be deleted." << endl;
return;
}
if(temp->data == data) {
head = temp->next;
return;
}
while(temp != NULL && temp->data != data) {
prev = temp;
temp = temp->next;
}
if(temp == NULL) {
cout << "The key is not present in the list." << endl;
return;
}
prev->next = temp->next;
}
/* for printing a ist */
void printList() {
struct Node* ptr;
ptr = head;
while (ptr != NULL) {
cout<< ptr->data <<" "; // use printf() for C
ptr = ptr->next;
}
cout<<endl;
}
int main() {
push(2);
push(3);
push(4);
push(5);
push(6);
cout<<"Original List is: ";
printList();
deletNode(5);
cout<<"After Deletion: ";
printList();
return 0;
}