forked from iamshubhamg/Leet-Code
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdoubly_linkedList.cpp
51 lines (46 loc) · 1002 Bytes
/
doubly_linkedList.cpp
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
#include<iostream>
using namespace std;
struct Node{
struct Node *prev;
int data;
struct Node *next;
}*head, *tail;
void createDoublyLL(int arr[], int n){
struct Node *p, *last;
head = new Node;
head->prev = NULL;
head->data = arr[0];
head->next = NULL;
last = head;
for(int i=1; i<n; i++){
p = new Node;
p->data = arr[i];
p->prev = last;
p->next = NULL;
last->next = p;
last = p;
}
tail = last;
}
void displayDoublyLL(struct Node *p){
while(p != NULL){
cout << p->data << "->";
p = p->next;
}
cout << endl;
}
void reverseDisplayDoublyLL(struct Node *p){
while(p != NULL){
cout << p->data << "->";
p = p->prev;
}
cout << endl;
}
int main(){
int arr[] = {1,2,3,4,5};
createDoublyLL(arr, 5);
displayDoublyLL(head);
reverseDisplayDoublyLL(tail);
delete []head;
return 0;
}