-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCircular Linked List
155 lines (123 loc) · 3.02 KB
/
Circular 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
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
155
//Circular linked list
#include <stdio.h>
#include <iostream>
using namespace std;
struct ListNode{
int data;
struct ListNode *next = NULL;
};
int ListLength(struct ListNode *head){
int count=0;
struct ListNode *curr=head;
if(head==NULL)
return 0;
do{ printf("%d", curr->data);
curr = curr->next;
count++;
} while(curr!=head);
return count;
}
void InsertAtEndCLL(struct ListNode **ptrtohead, int data){
struct ListNode *newnode = (ListNode *)malloc(sizeof(ListNode));
newnode->data = data;
struct ListNode *head,*curr;
head=*ptrtohead;
curr=head;
if(head==NULL)
{
*ptrtohead = newnode;
newnode->next=newnode;
return;
}
while(curr->next!=head)
curr = curr->next;
curr->next=newnode;
newnode->next = head;
}
void InsertAtStartCLL(struct ListNode **ptrtohead, int data){
struct ListNode *newnode = (ListNode *)malloc(sizeof(ListNode));
newnode->data = data;
struct ListNode *head,*curr;
head=*ptrtohead;
curr=head;
if(head==NULL)
{
*ptrtohead = newnode;
newnode->next=newnode;
return;
}
while(curr->next!=head)
curr = curr->next;
curr->next=newnode;
newnode->next = head;
//relocating head
*ptrtohead = newnode;
}
void DeleteEndNodeCLL(struct ListNode **ptrtohead){
struct ListNode *head,*curr,*prevcurr;
head=*ptrtohead;
curr=head;
if(head==NULL)
{
printf("No node to delete");
return;
}
if(head->next==head){
free(head);
*ptrtohead = NULL;
return;
}
while(curr->next!=head){
prevcurr=curr;
curr = curr->next;
}
prevcurr->next=head;
free(curr);
}
void DeleteStartNodeCLL(struct ListNode **ptrtohead){
struct ListNode *head,*curr,*prevcurr;
head=*ptrtohead;
curr=head;
if(head==NULL)
{
printf("No node to delete");
return;
}
if(head->next==head){
free(head);
*ptrtohead = NULL;
return;
}
//shift head one node forward,reinitialize pointers and then delete end node;
*ptrtohead = head->next;
head = head->next;
curr=head;
while(curr->next!=head){
prevcurr=curr;
curr = curr->next;
}
prevcurr->next=head;
free(curr);
}
int main() {
//creating a circular linked list
struct ListNode *a,*b,*c,*head, *curr;
a = (ListNode *)malloc(sizeof(ListNode));
b = (ListNode *)malloc(sizeof(ListNode));
c = (ListNode *)malloc(sizeof(ListNode));
a->next = b;
b->next = c;
c->next = a;
a->data = 1;
b->data = 2;
c->data =4;
head=a;
//head=NULL;
//InsertAtEndCLL(&head,5);
//InsertAtStartCLL(&head,5);
//DeleteEndNodeCLL(&head);
DeleteStartNodeCLL(&head);
int count = ListLength(head);
printf("\nCount:%d", count);
return 0;
}