-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdll.c
90 lines (76 loc) · 1.42 KB
/
dll.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
#include<stdio.h>
#include<stdlib.h>
struct node //node
{
int item;
struct node * prev;
struct node * next;
}*first,*last,* ptr; //pointers
int main()
{
int n; //number of elements
int x;
scanf("%d",&n);
for(int i=0;i<n;i++)
{
ptr=(struct node *)malloc(sizeof(struct node)); //allocate space
if(ptr==NULL)
{
printf("ERROR");
exit(1);
}
scanf("%d",&x); //input element
ptr->item=x; //store into node
if(i==0) //if its the first element
{
last=ptr;
first=last;
first->prev=NULL;
first->next=NULL;
}
else //link the new node to the list
{
last->next=ptr;
ptr->prev=last;
last=ptr;
last->next=NULL;
}
}
ptr=first;
while(ptr!=NULL) //print list from front to back
{
x=ptr->item;
printf("%d\n",x);
ptr=ptr->next;
}
ptr=last;
while(ptr!=NULL) //print list from back to front
{
x=ptr->item;
printf("%d\n",x);
ptr=ptr->prev;
}
ptr=first; //delete the first element
first=first->next;
first->prev=NULL;
free(ptr);
ptr=last; //delete the last element
last=last->prev;
last->next=NULL;
free(ptr);
ptr=first;
while(ptr!=NULL)
{
x=ptr->item;
printf("%d\n",x);
ptr=ptr->next;
}
ptr=last;
while(ptr!=NULL)
{
x=ptr->item;
printf("%d\n",x);
ptr=ptr->prev;
}
return 0;
}