-
Notifications
You must be signed in to change notification settings - Fork 104
/
Copy pathDoubly_Linked_List.c
60 lines (47 loc) · 1023 Bytes
/
Doubly_Linked_List.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
#include<stdio.h>
#include<stdlib.h>
struct Node{
int data;
struct Node* prev;
struct Node* next;
};
void TraverseForward(struct Node* head){
struct Node* p= head;
while(p!=NULL){
printf("%d ",p->data);
p=p->next;
}
}
void TraverseBackward(struct Node* head){
struct Node* p=head;
while(p->next!=NULL){
p=p->next;
}
while(p->prev!=NULL){
printf("%d ",p->data);
p=p->prev;
}
printf("%d ",p->data);
}
int main(){
struct Node* head=(struct Node*)malloc(sizeof(struct Node));
struct Node* n2=(struct Node*)malloc(sizeof(struct Node));
struct Node* n3=(struct Node*)malloc(sizeof(struct Node));
struct Node* n4=(struct Node*)malloc(sizeof(struct Node));
head->data=10;
head->prev=NULL;
head->next=n2;
n2->data=20;
n2->prev=head;
n2->next=n3;
n3->data=30;
n3->prev=n2;
n3->next=n4;
n4->data=40;
n4->prev=n3;
n4->next=NULL;
TraverseForward(head);
printf("\n");
TraverseBackward(head);
return 0;
}