-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLinked list.cpp
More file actions
171 lines (168 loc) · 3.83 KB
/
Linked list.cpp
File metadata and controls
171 lines (168 loc) · 3.83 KB
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
#include<iostream>
#include<stdio.h>
#define dbg(x) {cout<<#x<<" --- "<<x<<endl;}
using namespace std;
template <typename TYPE>
struct NODE{
TYPE value;
NODE *next;
};
template <class TYPE>
class MyLinkedList{
NODE<TYPE> *head,*tail;
int Size;
public:
MyLinkedList(){ //Constructor
head=NULL;
tail=NULL;
Size=0;
}
MyLinkedList(const MyLinkedList &x){ //Copy Constructor
if(x.head==NULL){
head=tail=NULL;
Size=0;
}
else{
Size=0;
NODE<TYPE> *temp=x.head;
NODE<TYPE> *temp2=new NODE<TYPE>,*temp3;
head=temp2;
head->value=temp->value;
Size++;
temp=temp->next;
while(temp!=NULL)
{
temp3 = new NODE<TYPE>;
temp3->value=temp->value;
temp=temp->next;
temp2->next=temp3;
temp2=temp2->next;
Size++;
}
temp2->next=NULL;
tail=temp2;
}
}
void push_front(TYPE x){
NODE<TYPE> *temp= new NODE<TYPE>;
temp->value=x;
if(head==NULL){
temp->next=NULL;
head=tail=temp;
}
else{
temp->next=head;
head=temp;
}
Size++;
}
void push_back(TYPE x){
NODE<TYPE> *temp=new NODE<TYPE>;
temp->value=x;
temp->next=NULL;
if(head==NULL){
head=tail=temp;
}
else{
tail->next=temp;
tail=tail->next;
}
Size++;
}
TYPE pop_front(){
if(head==NULL){
printf("List is empty!!\n");
return -1;
}
Size--;
NODE<TYPE> *temp=head;
TYPE x=temp->value;
if(head==tail){
delete temp;
head=tail=NULL;
return x;
}
head=head->next;
delete temp;
return x;
}
TYPE pop_back(){ //Order of N!!
if(head==NULL){
printf("List is Empty!!\n");
return -1;
}
TYPE x;
NODE<TYPE> *temp=head,*temp2;
if(head->next==NULL){
x=head->value;
delete head;
head=tail=NULL;
return x;
}
while(temp->next->next!=NULL) temp=temp->next;
temp2=temp->next;
temp->next=NULL;
tail=temp;
x=temp2->value;
delete temp2;
return x;
}
void display(){
NODE<TYPE> *temp=head;
while(temp!=NULL){
cout<<temp->value<<" ";
temp=temp->next;
}
printf("\n");
}
int search(TYPE x){
NODE<TYPE> *temp=head;
int pos=0;
if(head==NULL) return -1;
while(temp!=NULL){
if(temp->value==x) return pos;
temp=temp->next;
pos++;
}
return -1;
}
int size(){
return Size;
}
TYPE front(){
if(head!=NULL) return head->value;
return -1;
}
TYPE back(){
if(tail!=NULL) return tail->value;
return -1;
}
bool empty(){
if(Size==0) return true;
return false;
}
~MyLinkedList(){
NODE<TYPE> *temp;
while(head!=NULL){
temp=head;
head=head->next;
delete temp;
}
tail=NULL;
Size=0;
}
};
/*MyLinkedList<int> Func( MyLinkedList<int> l)
{
l.display();
cout<<l.size()<<endl;
l.push_back(5);
l.push_back(6);
l.push_back(7);
return l;
}*/
int main()
{
MyLinkedList<int> p;
return 0;
}