forked from markandey007/hacktoberfest_2022
-
Notifications
You must be signed in to change notification settings - Fork 0
/
InsertioninLinkedList.cpp
105 lines (85 loc) · 2.2 KB
/
InsertioninLinkedList.cpp
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
#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;
/* inserting at the beginning */
void insertAtBeginning(int data) {
/* this line creates a memory block of type node in the memory */
struct Node* new_node = (struct Node*) malloc(sizeof(struct Node));
/* assigning data to new node*/
new_node->data = data;
new_node->next = head;
head = new_node;
}
void insertAfter(int nodeAfter, int data) {
struct Node* temp;
temp = head;
if(head == NULL) {
cout << "The node can't be inserted in this case as the list doesn't exist." << endl;
}
else {
while(temp->data != nodeAfter) {
temp = temp->next;
if(temp == NULL) {
cout << "The node can't be inserted." << endl;
return;
}
}
struct Node* new_node = (struct Node*) malloc(sizeof(struct Node));
new_node->data = data;
new_node->next = temp->next;
temp->next = new_node;
}
}
void insertAtEnd(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;
}
}
/* 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() {
insertAtBeginning(1);
cout<<"After Inserting at Beginning: ";
printList();
insertAtBeginning(7);
cout<<"After Inserting at Beginning: ";
printList();
insertAtEnd(14);
cout<<"After Inserting at End: ";
printList();
insertAfter(7, 15);
cout<<"After Inserting after node 7: ";
printList();
insertAfter(1, 20);
cout<<"After Inserting after node 1: ";
printList();
return 0;
}