-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCLL- insert pos, delete end
136 lines (106 loc) · 1.79 KB
/
CLL- insert pos, delete end
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
#include <stdio.h>
#include <stdlib.h>
struct node
{
int data;
struct node *link;
};
typedef struct node* NODE;
NODE getnode()
{
NODE x;
x = malloc(sizeof(struct node));
return x;
}
NODE insert_position(int item, NODE head, int pos)
{
int i;
NODE temp,cur,prev;
if((pos>head->data+1) || (pos < 1))
{
printf("Invalid position\n");
return head;
}
prev = head;
cur = head->link;
for(i=1; i<pos; i++)
{
prev = cur;
cur = cur->link;
}
temp = getnode();
temp->data = item;
prev->link = temp;
temp->link = cur;
head->data += 1;
return head;
}
NODE delete_last(NODE head)
{
NODE cur,prev;
int i;
if(head->link == head)
{
printf("Nothing to delete\n");
return head;
}
prev = NULL;
cur = head;
for(i=0; i<head->data; i++)
{
prev = cur;
cur = cur->link;
}
prev->link = cur->link;
free(cur);
head->data -= 1;
return head;
}
void display(NODE head)
{
NODE temp;
if(head == NULL)
{
printf("Nothing to display. \n");
return;
}
for(temp = head->link; temp!=head; temp=temp->link)
{
printf("%d\n",temp->data);
printf("\n");
}
printf("%d\n",temp->data);
}
int main()
{
NODE head;
int choice,item,pos;
head=getnode();
head->link = head;
head->data = 0;
for(;;)
{
printf("1. Insert Position\n2. Delete end\n3. display\n4. exit\n");
printf("Enter the choice: \n");
scanf("%d",&choice);
switch(choice)
{
case 1:
printf("Enter the item: \n");
scanf("%d",&item);
printf("Enter the position: \n");
scanf("%d",&pos);
head=insert_position(item,head,pos);
break;
case 2:
//printf("Enter the position : \n");
//scanf("%d",&pos);
head=delete_last(head);
break;
case 3:
display(head);
break;
default:exit(0);
}
}
}