-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdoubly linked lists.c
135 lines (121 loc) · 2.32 KB
/
doubly linked lists.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
//doubly linked list
#include<stdio.h>
#include<stdlib.h>
struct node
{
int info;
struct node *prev;
struct node *next;
};
typedef struct node *NODE;
NODE getnode()
{
NODE x=(NODE)malloc(sizeof(struct node));
if(x==NULL)
{
printf("Mem not available\n");
exit(0);
}
return x;
}
NODE insert_front(int item,NODE y)
{
NODE new_node=getnode();
new_node->info=item;
new_node->next=NULL;
new_node->prev=NULL;
if(y==NULL)
return new_node;
y->prev=new_node;
new_node->next=y;
y=new_node;
return y;
}
NODE insert_rear(int item,NODE y)
{
NODE new_node=getnode();
new_node->info=item;
new_node->next=NULL;
new_node->prev=NULL;
if(y==NULL)
return new_node;
NODE cur=y;
while(cur->next!=NULL)
{
cur=cur->next;
}
cur->next=new_node;
new_node->prev=cur;
return y;
}
NODE delete_front(NODE y)
{
if(y==NULL)
{
printf("List is empty\n");
return NULL;
}
if(y->next==NULL)
{
printf("The Only node is deleted\n");
free(y);
return NULL;
}
NODE cur=y->next;
cur->prev=NULL;
free(y);
return cur;
}
NODE delete_rear(NODE y)
{
if(y==NULL)
{
printf("List is empty\n");
return NULL;
}
if(y->next==NULL)
{
printf("The Only node is deleted\n");
free(y);
return NULL;
}
NODE cur=y;
while(cur->next!=NULL)
cur=cur->next;
NODE temp=cur->prev;
temp->next=NULL;
free(cur);
return y;
}
void display(NODE y)
{
NODE cur=y;
while(cur!=NULL)
{
printf("%d ",cur->info);
cur=cur->next;
}
printf("\n");
}
int main()
{
NODE first=NULL;
first=delete_front(first);/*not possible as list is empty*/
first=delete_rear(first);
first=insert_front(3,first);
display(first);
first = delete_front(first);
first=insert_front(3,first);
first=insert_front(2,first);
first=insert_front(1,first);
display(first);
first=insert_rear(7,first);
first=insert_rear(8,first);
first=insert_rear(9,first);
display(first);
first= delete_rear(first);
display(first);
first= delete_front(first);
display(first);
return 0;
}