-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwrapper_clist.h
295 lines (276 loc) · 8.53 KB
/
wrapper_clist.h
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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
/********************************************/
/* Turbo Turtle CList Wrapper Class */
/* */
/* Copyright (c) 2009 by Richard Goedeken */
/* [email protected] */
/********************************************/
// 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, version 3.
// 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/>.
#include <stdlib.h>
#include <stdarg.h>
#include <memory.h>
// this must be at least 4
#define INTERNAL_SIZE 4
template <typename T>
class CList
{
public:
// default constuctor for an empty list
CList() : pExternal(NULL), iListSize(0) { }
// destructor
~CList() { if (pExternal != NULL) delete [] this->pExternal; }
// copy constructor
CList(const CList<T> &ref)
{
if (ref.pExternal == NULL)
{
this->pExternal = NULL;
this->iListSize = ref.iListSize;
memcpy(this->aInternal, ref.aInternal, ref.iListSize * sizeof(T));
}
else
{
this->pExternal = new T[ref.iListSize];
this->iListSize = ref.iListSize;
memcpy(this->pExternal, ref.pExternal, ref.iListSize * sizeof(T));
}
}
// assignment operator
CList<T> & operator=(const CList<T> &ref)
{
// check for initializing from self
if (this == &ref)
return *this;
// otherwise free any memory I may be holding on to
if (this->pExternal)
{
delete [] this->pExternal;
this->pExternal = NULL;
}
// then construct myself from the input object
if (ref.pExternal == NULL)
{
this->pExternal = NULL;
this->iListSize = ref.iListSize;
memcpy(this->aInternal, ref.aInternal, ref.iListSize * sizeof(T));
}
else
{
this->pExternal = new T[ref.iListSize];
this->iListSize = ref.iListSize;
memcpy(this->pExternal, ref.pExternal, ref.iListSize * sizeof(T));
}
return *this;
}
// special constructors for LIST instruction
CList(T num1)
{
this->pExternal = NULL;
this->iListSize = 1;
this->aInternal[0] = num1;
}
CList(T num1, T num2)
{
this->pExternal = NULL;
this->iListSize = 2;
this->aInternal[0] = num1;
this->aInternal[1] = num2;
}
CList(T num1, T num2, T num3)
{
this->pExternal = NULL;
this->iListSize = 3;
this->aInternal[0] = num1;
this->aInternal[1] = num2;
this->aInternal[2] = num3;
}
CList(T num1, T num2, T num3, T num4)
{
this->pExternal = NULL;
this->iListSize = 4;
this->aInternal[0] = num1;
this->aInternal[1] = num2;
this->aInternal[2] = num3;
this->aInternal[3] = num4;
}
CList(int iSize, double num1, double num2, double num3, double num4, ...)
{
va_list arguments;
this->iListSize = iSize;
if (iSize <= INTERNAL_SIZE)
{
this->pExternal = NULL;
this->aInternal[0] = (T) num1;
this->aInternal[1] = (T) num2;
this->aInternal[2] = (T) num3;
this->aInternal[3] = (T) num4;
va_start(arguments, num4);
for (int i = 4; i < iSize; i++)
this->aInternal[i] = (T) va_arg(arguments, double);
va_end(arguments);
}
else
{
this->pExternal = new T[iSize];
this->pExternal[0] = num1;
this->pExternal[1] = num2;
this->pExternal[2] = num3;
this->pExternal[3] = num4;
va_start(arguments, num4);
for (int i = 4; i < iSize; i++)
this->pExternal[i] = (T) va_arg(arguments, double);
va_end(arguments);
}
}
// special constructor for FPUT instruction
CList(T num1, const CList<T> &ref)
{
if (ref.iListSize + 1 <= INTERNAL_SIZE)
{
this->pExternal = NULL;
this->iListSize = ref.iListSize + 1;
this->aInternal[0] = num1;
memcpy((this->aInternal+1), ref.aInternal, ref.iListSize * sizeof(T));
}
else
{
this->iListSize = ref.iListSize + 1;
this->pExternal = new T[this->iListSize];
this->pExternal[0] = num1;
if (ref.pExternal != NULL)
memcpy((this->pExternal+1), ref.pExternal, ref.iListSize * sizeof(T));
else
memcpy((this->pExternal+1), ref.aInternal, ref.iListSize * sizeof(T));
}
}
// special constructor for LPUT instruction
CList(const CList<T> &ref, T num1)
{
if (ref.iListSize + 1 <= INTERNAL_SIZE)
{
this->pExternal = NULL;
this->iListSize = ref.iListSize + 1;
this->aInternal[ref.iListSize] = num1;
memcpy(this->aInternal, ref.aInternal, ref.iListSize * sizeof(T));
}
else
{
this->iListSize = ref.iListSize + 1;
this->pExternal = new T[this->iListSize];
this->pExternal[ref.iListSize] = num1;
if (ref.pExternal != NULL)
memcpy(this->pExternal, ref.pExternal, ref.iListSize * sizeof(T));
else
memcpy(this->pExternal, ref.aInternal, ref.iListSize * sizeof(T));
}
}
// function for BUTFIRST instruction
CList<T> ButFirst(void) const
{
CList<T> local;
if (this->iListSize < 1)
return local;
if (this->iListSize - 1 <= INTERNAL_SIZE)
{
local.iListSize = this->iListSize - 1;
if (this->pExternal == NULL)
memcpy(local.aInternal, (this->aInternal+1), local.iListSize * sizeof(T));
else
memcpy(local.aInternal, (this->pExternal+1), local.iListSize * sizeof(T));
}
else
{
local.iListSize = this->iListSize - 1;
local.pExternal = new T[local.iListSize];
memcpy(local.pExternal, (this->pExternal+1), local.iListSize * sizeof(T));
}
return local;
}
// function for BUTLAST instruction
CList<T> ButLast(void) const
{
CList<T> local;
if (this->iListSize < 1)
return local;
if (this->iListSize - 1 <= INTERNAL_SIZE)
{
local.iListSize = this->iListSize - 1;
if (this->pExternal == NULL)
memcpy(local.aInternal, this->aInternal, local.iListSize * sizeof(T));
else
memcpy(local.aInternal, this->pExternal, local.iListSize * sizeof(T));
}
else
{
local.iListSize = this->iListSize - 1;
local.pExternal = new T[local.iListSize];
memcpy(local.pExternal, this->pExternal, local.iListSize * sizeof(T));
}
return local;
}
// function for REVERSE instruction
CList<T> Reverse(void) const
{
CList<T> local;
local.iListSize = this->iListSize;
if (this->pExternal != NULL)
{
local.pExternal = new T[this->iListSize];
for (int i = 0; i < this->iListSize; i++)
local.pExternal[i] = this->pExternal[this->iListSize - i - 1];
}
else
{
for (int i = 0; i < this->iListSize; i++)
local.aInternal[i] = this->aInternal[this->iListSize - i - 1];
}
return local;
}
// function for indexing operator, for FIRST and ITEM instructions
T operator[](int index) const
{
if (index < 0 || index >= this->iListSize)
return 0;
if (this->pExternal == NULL)
return this->aInternal[index];
else
return this->pExternal[index];
}
// function for LAST instruction
T Last(void) const
{
if (this->iListSize <= 0)
return 0;
if (this->pExternal == NULL)
return this->aInternal[this->iListSize - 1];
else
return this->pExternal[this->iListSize - 1];
}
// function for PICK instruction
T Pick(void) const
{
if (this->iListSize <= 0)
return 0;
int idx = ((long long) this->iListSize * rand() / ((long long) RAND_MAX + 1));
if (this->pExternal == NULL)
return this->aInternal[idx];
else
return this->pExternal[idx];
}
// function for COUNT and EMPTYP instructions
int Length(void) const
{
return iListSize;
}
private:
T aInternal[INTERNAL_SIZE];
T *pExternal;
int iListSize;
};