-
Notifications
You must be signed in to change notification settings - Fork 0
/
doublyLL.c
146 lines (118 loc) · 2.53 KB
/
doublyLL.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
#include<stdio.h>
#include<stdlib.h>
typedef struct node
{
int info;
struct node *prev,*next;
} node;
node *START=NULL;
void insertnode()
{
node *n;
n=(node *)malloc(sizeof(node));
printf("Enter the value to store in this node\n");
scanf("%d\n",&n->info);
n->prev=NULL;
n->next=NULL;
if(START==NULL)
START=n;
else
{
n->next=START;
START->prev=n;
START=n;
}
}
void deletenode()
{
if(START==NULL)
printf("List empty\n");
else
{
node *t;
t=START;
START=START->next;
START->prev=NULL;
free(t);
}
}
void viewlist()
{
int num;
printf("1.From Back\n2.From Front\n");
scanf("%d",&num);
switch(num)
{
case 1:
if(START==NULL)
printf("Empty List\n");
node *r;
r=START;
while(r->next!=NULL)
{
printf("%d\n",r->info);
r=r->next;
}
break;
case 2:
if(START==NULL)
printf("Empty List\n");
node *s;
s=START;
while(s->next!=NULL)
s=s->next;
while(s->prev!=NULL)
{
printf("%d\n",s->info);
s=s->prev;
}
break;
default:
printf("Invalid Choice");
}
}
void create_linked_list()
{
int a;
printf("Enter the length of linked list: ");
scanf("%d\n",&a);
for(int i=0;i<a;i++)
insertnode();
}
int choice()
{
int k;
printf("1.CreateLL\n");
printf("2.Insert first node\n");
printf("3.Delete first node\n");
printf("4.ViewLL\n");
printf("5.Exit\n\n");
scanf("%d\n",&k);
return k;
}
void main()
{
while(1)
{
switch(choice())
{
case 1:
create_linked_list();
break;
case 2:
insertnode();
break;
case 3:
deletenode();
break;
case 4:
viewlist();
break;
case 5:
exit(0);
break;
default:
printf("Invalid Choice\n");
}
}
}