-
Notifications
You must be signed in to change notification settings - Fork 0
/
circular_linked_list.c
154 lines (121 loc) · 2.63 KB
/
circular_linked_list.c
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
#include <stdio.h>
#include <stdlib.h>
typedef struct Node {
int data;
struct Node *next;
};
void insertAtEnd(struct Node **headRef, int data) {
struct Node *current = *headRef;
struct Node *newNode = (struct Node *) malloc(sizeof(struct Node));
if(newNode == NULL) {
printf("Memory could not be allocated\n");
return;
}
newNode->data = data;
newNode->next = newNode;
if(*headRef == NULL) {
*headRef = newNode;
} else {
while(current->next != *headRef) {
current = current->next;
}
newNode->next = *headRef;
current->next = newNode;
}
}
void insertAtBegin(struct Node **headRef, int data) {
struct Node *current = *headRef;
struct Node *newNode = (struct Node *) malloc(sizeof(struct Node));
if(newNode == NULL) {
printf("Memory could not be allocated\n");
return;
}
newNode->data = data;
newNode->next = newNode;
if(*headRef == NULL) {
*headRef = newNode;
} else {
while(current->next != *headRef) {
current = current->next;
}
newNode->next = *headRef;
current->next = newNode;
*headRef = newNode;
}
}
void deleteAtBegin(struct Node **headRef) {
struct Node *temp = *headRef;
struct Node *current = *headRef;
if(*headRef == NULL) {
printf("List is empty\n");
return;
} else {
while(current->next != *headRef) {
current = current->next;
}
current->next = (*headRef)->next;
if(*headRef != (*headRef)->next) {
*headRef = (*headRef)->next;
} else {
*headRef = NULL;
}
free(temp);
}
}
void deleteAtEnd(struct Node **headRef) {
struct Node *temp = *headRef;
struct Node *current = *headRef;
if(*headRef == NULL) {
printf("List is empty\n");
} else {
while(current->next != *headRef) {
temp = current;
current = current->next;
}
temp->next = *headRef;
if(temp == current) {
*headRef = NULL;
}
free(current);
}
}
void printList(struct Node *headRef) {
struct Node *current = headRef;
printf(" Head ");
if(headRef != NULL) {
while(current->next != headRef) {
printf(" %d ", current->data);
current = current->next;
}
printf(" %d ", current->data);
}
printf(" Tail \n");
}
int length(struct Node *headRef) {
struct Node *current;
int count = 0;
current = headRef;
if(headRef != NULL) {
while(current->next != headRef) {
count++;
current = current->next;
}
count++;
}
return count;
}
int main() {
struct Node *head = NULL;
insertAtBegin(&head, 1);
insertAtBegin(&head, 0);
insertAtEnd(&head, 2);
insertAtEnd(&head, 3);
insertAtEnd(&head, 4);
deleteAtBegin(&head);
deleteAtBegin(&head);
deleteAtBegin(&head);
deleteAtEnd(&head);
printf("Length of the list is %d\n", length(head));
printList(head);
return 0;
}