forked from ramrealdev/program1-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathList.cpp
More file actions
140 lines (116 loc) · 2.18 KB
/
List.cpp
File metadata and controls
140 lines (116 loc) · 2.18 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
#include "List.h"
#include "Star.h"
#include "Planet.h"
#include "List.h"
#include <iostream>
List::List(){
head = NULL;
tail = NULL;
}
List::~List(){
Node * temp = tail;
while(temp != head){
tail = tail -> previous;
tail -> next = NULL;
delete temp -> list_planet;
delete temp;
temp = tail;
}
delete head ->list_planet;
head ->list_planet = NULL;
delete head;
head = NULL;
}
void List::insert(int index, Planet * new_planet) {
Node * temp = head;
Node * input_node = new Node(new_planet);
int temp_index = 0;
if(head == NULL){
head = input_node;
tail = head;
return;
}
if(index == 0){
input_node -> next = head;
head -> previous = input_node;
head = input_node;
return;
}
if (size() > index){
while(temp != NULL){
temp_index++;
temp->next->previous = temp;
temp = temp->next;
if (temp_index == index) {
input_node->previous = temp;
input_node->next = temp->next;
temp->next = input_node;
}
}
}
else{
input_node -> previous = tail;
tail -> next = input_node;
tail = input_node;
}
}
Planet * List::read(int index) {
if(head == NULL)
return NULL;
Node * temp = head;
int temp_index = 0;
if(index > size())
return NULL;
else{
if(index == 0)
return temp->list_planet;
while(temp->next != NULL) {
temp_index++;
temp = temp->next;
if (temp_index == index)
return temp-> list_planet;
}
}
return NULL;
}
bool List::remove(int index) {
Node * temp = head;
int temp_index = 0;
if (size() < index)
return false;
else{
if(index == 0){
head = head ->next;
head -> previous = NULL;
delete temp -> list_planet;
delete temp;
temp = head;
return true;
}
while(temp != NULL) {
temp_index++;
temp = temp->next;
if (temp_index == index){
temp -> previous -> next = temp -> next;
temp -> next -> previous = temp -> previous;
delete temp -> list_planet;
temp -> list_planet = NULL;
delete temp;
temp = NULL;
return true;
}
}
}
return false;
}
unsigned List::size() {
Node * temp = head;
int temp_index = 0;
if(head == NULL)
return 0;
while(temp != NULL) {
temp_index++;
temp = temp->next;
}
return temp_index;
}