forked from daction/Basic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
LL_in_OOP.cpp
96 lines (79 loc) · 1.63 KB
/
LL_in_OOP.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
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
// Singly Linked List in OOP techniques
// This code is convertible to Doubly Linked List
// Mar31
// Base on credit:
// http://www.cprogramming.com/snippets/source-code/double-linked-list-cplusplus
#include <iostream>
using namespace std;
struct Node{
double value; // Data
//Node* next;
Node *N, *P;
Node(double y)
{
value = y;
N = P = NULL;
}
};
class doubleLinkedList{
Node* front;
Node* back;
public:
doubleLinkedList()
{
front = NULL;
back = NULL;
}
~doubleLinkedList(){
destroyList();
}
void appendNodeFront (double x);
void appendNodeBack (double x);
void dispNodesForward();
void dispNodesReverse();
void destroyList();
};
void doubleLinkedList::appendNodeFront(double x)
{
Node* n = new Node(x);
if( front == NULL)
{
front = n;
back = n;
}
else{
front->P = n;
n->N = front;
front = n;
}
}
void doubleLinkedList::dispNodesForward(){
Node *temp = front;
cout << "\n\n Nodes in forward order:" <<endl;
while(temp != NULL){
cout << temp->value << " ";
temp = temp->N;
}
}
void doubleLinkedList::appendNodeBack(double x){
}
void doubleLinkedList::destroyList()
{
Node* T = back;
while(T != NULL){
Node* T2 = T;
T = T->P;
delete T2;
}
front = NULL;
back = NULL;
}
int main(){
doubleLinkedList* list = new doubleLinkedList();
for( int i = 1; i < 4; i++ ){
list->appendNodeFront(i*1.1);
list->dispNodesForward();
}
delete list;
return 0;
}