-
Notifications
You must be signed in to change notification settings - Fork 0
/
Linked list
80 lines (70 loc) · 1.67 KB
/
Linked list
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
#include <stdio.h>
#include <stdlib.h>
struct Node {
int data;
struct Node* next;
};
void operateLinkedList() {
int n;
scanf("%d", &n);
struct Node* head = NULL;
for (int i = 0; i < n; i++) {
int data;
scanf("%d", &data);
struct Node* newNode = (struct Node*)malloc(sizeof(struct Node));
newNode->data = data;
newNode->next = NULL;
if (head == NULL) {
head = newNode;
} else {
struct Node* temp = head;
while (temp->next != NULL) {
temp = temp->next;
}
temp->next = newNode;
}
}
struct Node* temp = head;
printf("Elements are:\n");
while (temp != NULL) {
printf("%d\n", temp->data);
temp = temp->next;
}
if (head == NULL) {
printf("List is empty\n");
} else {
struct Node* prev = NULL;
temp = head;
while (temp->next != NULL) {
prev = temp;
temp = temp->next;
}
if (prev == NULL) {
head = NULL;
} else {
prev->next = NULL;
}
printf("Deleted element is %d\n", temp->data);
free(temp);
if (head == NULL) {
printf("List is empty\n");
} else {
temp = head;
printf("Elements are:\n");
while (temp != NULL) {
printf("%d\n", temp->data);
temp = temp->next;
}
}
}
struct Node* temp1;
while (head != NULL) {
temp1 = head;
head = head->next;
free(temp1);
}
}
int main() {
operateLinkedList();
return 0;
}