-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStudentListCopyFunctions.cpp
More file actions
153 lines (134 loc) · 3.02 KB
/
StudentListCopyFunctions.cpp
File metadata and controls
153 lines (134 loc) · 3.02 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
/*
Pham, Kidd (Team Leader)
Nguyen, Cindy
Dao, Kenneth
Rodriguez, Cele
Project: Grade Report
CS A250
Fall 2023
*/
#include "StudentList.h"
#include <iostream>
using namespace std;
StudentList::StudentList(const StudentList& paramStudentList)
{
if (paramStudentList.count != 0)
{
first = new Node(paramStudentList.first->getStudent(), nullptr);
Node* current = paramStudentList.first->getNext();
Node* temp = first;
while (current != nullptr)
{
temp->setNext(new Node(current->getStudent(), nullptr));
current = current->getNext();
temp = temp->getNext();
}
last = temp;
count = paramStudentList.count;
}
else
{
first = nullptr;
last = nullptr;
count = 0;
}
}
StudentList& StudentList::operator=(const StudentList& rightSide)
{
if (&rightSide == this)
{
cerr << "Attempted assignment to itself.";
return *this;
}
else
{
if (rightSide.count == 0)
{
clearStudentList();
}
else if (count == 0)
{
copyCallingObjIsEmpty(rightSide);
}
else if (count == rightSide.count)
{
copyObjectsSameLength(rightSide);
}
else if (count > rightSide.count)
{
copyCallingObjLonger(rightSide);
}
else
{
copyCallingObjShorter(rightSide);
}
return *this;
}
}
void StudentList::copyCallingObjIsEmpty(const StudentList& rightSide)
{
first = new Node(rightSide.first->getStudent(), nullptr);
Node* current = rightSide.first->getNext();
Node* temp = first;
while (current != nullptr)
{
temp->setNext(new Node(current->getStudent(), nullptr));
current = current->getNext();
temp = temp->getNext();
}
last = temp;
count = rightSide.count;
}
void StudentList::copyObjectsSameLength(const StudentList& rightSide)
{
Node* current = rightSide.first;
Node* temp = first;
while (temp != nullptr)
{
temp->setStudent(current->getStudent());
current = current->getNext();
temp = temp->getNext();
}
}
void StudentList::copyCallingObjLonger(const StudentList& rightSide)
{
first->setStudent(rightSide.first->getStudent());
Node* current = rightSide.first->getNext();
Node* temp = first;
while (current != nullptr)
{
temp->getNext()->setStudent(current->getStudent());
current = current->getNext();
temp = temp->getNext();
}
Node* trailingCurrent = temp;
temp = temp->getNext();
while (temp != nullptr)
{
trailingCurrent->setNext(temp->getNext());
delete temp;
temp = trailingCurrent->getNext();
}
last = trailingCurrent;
count = rightSide.count;
}
void StudentList::copyCallingObjShorter(const StudentList& rightSide)
{
Node* temp = first;
Node* current = rightSide.first;
while (temp != nullptr)
{
temp->setStudent(current->getStudent());
temp = temp->getNext();
current = current->getNext();
}
temp = last;
while (current != nullptr)
{
temp->setNext(new Node(current->getStudent(), nullptr));
current = current->getNext();
temp = temp->getNext();
}
last = temp;
count = rightSide.count;
}