-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdoubleyLinkedList.cpp
66 lines (57 loc) · 1.26 KB
/
doubleyLinkedList.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#include<iostream>
using namespace std ;
class Node{
public:
int data;
class Node * next;
class Node * previous;
};
void traversal(class Node * headOrPrevious)
{
if (headOrPrevious->next == NULL)
{ while(headOrPrevious != NULL)
{
cout<<headOrPrevious->data<<"|";
headOrPrevious = headOrPrevious ->previous ;
}
}
else
{
while(headOrPrevious != NULL)
{ cout<<headOrPrevious->data<<"|";
headOrPrevious = headOrPrevious ->next ;
}
}
}
int main()
{
class Node * head;
class Node * first;
class Node * second;
class Node * third;
class Node * forth;
head = new Node ;
first = new Node ;
second =new Node ;
third =new Node ;
forth = new Node ;
head->next = first ;
head->previous = NULL;
first->next = second ;
first->previous = head;
second->next = third ;
second->previous = first;
third->next = forth ;
third->previous = second;
forth->next = NULL;
forth->previous = third;
head->data = 1;
first->data = 2;
second->data = 3;
third->data = 4;
forth->data = 5;
traversal(head);
cout<<endl;
traversal(forth);
return 0;
}