-
Notifications
You must be signed in to change notification settings - Fork 1
/
CLL_MDP_DAN_d.c
138 lines (132 loc) · 2.72 KB
/
CLL_MDP_DAN_d.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
#include<stdio.h>
#include<conio.h>
#include<stdlib.h>
struct cllist
{
int data;
struct cllist *next;
};
typedef struct cllist node;
node *head=NULL,*new1,*ptr;
int count=0;
void display_CLL()
{
node *ptr;
ptr=head;
printf("\n");
if(ptr==NULL)
{
printf("Empty List\n");
return;
}
else
{
printf("Circular List Elements\n");
do
{
printf("%d\t",ptr->data);
ptr=ptr->next;
}while(ptr!=head);
getch();
}
}
void CLL_dan()
{
int n,i;
node *loc,*locp,*last;
printf("\nEnter position: ");
scanf("%d",&n);
if(n>count)
{
printf("Invalid Position\n");
getch();
return;
}
else
{
loc = head;
for (i=2;i<=n;i++)
{
locp = loc;
loc = loc->next;
}
if ((head == loc)&&(loc->next==head))
{
head = NULL;
free(loc);
}
else if((head == loc) && (loc->next != head))
{
last=head;
do
{
last=last->next;
}while(last->next!=head);
last->next=head->next;
head = head->next;
free(loc);
}
else if((head!=loc) && (loc->next == head))
{
locp->next =head;
free(loc);
}
else
{
locp->next = loc->next;
free(loc);
}
}
count--;
}
void main()
{
int ch;
char op;
head = (node*)malloc(sizeof(node));
ptr=head;
printf("Enter initial Linked List:\n");
printf("Enter data: ");
scanf("%d",&ptr->data);
count++;
do
{
printf("\nContinue Linked List? y or n: ");
op=getch();
switch(op)
{
case 'y':{
new1=(node*)malloc(sizeof(node));
ptr->next=new1;
ptr=new1;
printf("\nEnter data: ");
scanf("%d",&ptr->data);
count++;
break;
}
case 'n': {
ptr->next = head;
break;
}
default: printf("\nPlease only input 'y' or 'n'\n");break;
}
}while (op!='n');
system("cls");
do
{
printf("\nLinked List Operations:\n");
printf("1.\tDelete Nth Node\n2.\tDisplay Linked List\n3.\tExit");
printf("\nChoice: ");
scanf("%d",&ch);
switch(ch)
{
case 1:CLL_dan();break;
case 2:display_CLL();break;
case 3:exit(1);
default: {
printf("\nInvalid Choice!\n");
break;
}
}
}while(ch!=3);
}