forked from Ritu-Kundu/Superbubbles
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCandidateList.cpp
82 lines (70 loc) · 1.96 KB
/
CandidateList.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
/**
Superbubbles
Copyright (C) 2016 Ritu Kundu, Fatima Vayani, Manal Mohamed, Solon P. Pissis
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
**/
/** Implements the class CandidateList
*/
#include "CandidateList.hpp"
namespace supbub{
CandidateList::CandidateList(){
_front = nullptr;
_tail = nullptr;
}
CandidateList::~CandidateList(){
while (!empty()) {
delete_tail();
}
}
Candidate*
CandidateList::insert(int64_t ver, bool isEntrance, Candidate* pvsEntrance){
Candidate* newCand = new Candidate{ver, isEntrance, pvsEntrance, nullptr, _tail};
// if it's not the first node, set tail to it
if ( _tail != nullptr) {
_tail->next = newCand;
_tail= newCand;
}
else{ // if it's first node, set front
_front = newCand;
_tail = newCand;
}
return newCand;
}
Candidate*
CandidateList::tail(){
return _tail;
}
Candidate*
CandidateList::front(){
return _front;
}
bool
CandidateList::empty(){
return (_front==nullptr && _tail==nullptr);
}
void
CandidateList::delete_tail(){
if (_tail != nullptr) {
if (_front == _tail) { // last element in the list
delete _tail;
_front = nullptr;
_tail = nullptr;
}
else {
Candidate* newTail = _tail->pvs;
delete _tail;
newTail->next = nullptr;
_tail = newTail;
}
}
}
}// end namespace