-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSkipList.cpp
400 lines (332 loc) · 9.17 KB
/
SkipList.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
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
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
#include <iostream>
#include <fstream>
#include <time.h>
// class declaration for the skiplist node
class skip_list_node
{
public:
// a dynamic array of pointer to skiplist nodes
struct skip_list_node** forward;
// a key value between [9999 999999]
int key;
// a string associated with a given key between [4, 20] uppercase chars
std::string val;
// constructor for skiplist node (Key, level, val)
skip_list_node(int, int, std::string);
};
//implementation of constructor for skiplist node
skip_list_node::skip_list_node(int Key, int level, std::string value)
{
this->key = Key;
this->val = value;
forward = new skip_list_node* [level + 1];
// Fills a block of memory with space needed for forward (allows for dynamic memory allocation)
memset(forward, 0, sizeof(skip_list_node*)*(level + 1));
};
// class declartation of skiplist
class skip_list
{
//pointer to a dummy skip list node with initial height of maxHeight
skip_list_node* header;
// current number of levels in the skiplist
int level;
int maxLevel;
// probability, set for the whole skiplist
float p;
public:
skip_list();
int randomLevel();
skip_list_node* newNode(int, int, std::string);
bool insert(int, std::string);
bool remove(int);
bool isPresent(int);
std::string find(int);
int membership();
void listAll();
void debugList();
int getlevel(int);
};
//skipList constructor
skip_list::skip_list()
{
p = .25;
maxLevel = 5;
level = 1;
//dummy header node with height of max level
header = new skip_list_node(100000, maxLevel, "head");
}
// sets the level that a new node will have (randomly generated)
int skip_list::randomLevel()
{
int newLevel = 1;
while ((float)std::rand() / RAND_MAX < p && newLevel < maxLevel)
{
newLevel = newLevel + 1;
}
return std::min(newLevel, maxLevel);
};
//makes a new node
skip_list_node* skip_list::newNode(int Key, int level, std::string s)
{
skip_list_node* node = new skip_list_node(Key, level, s);
return node;
}
//inserts key into list if not already present
bool skip_list::insert(int Key, std::string s)
{
bool inserted = false;
if (isPresent(Key))
{
return inserted;
}
//x is the current node
skip_list_node* x = header;
//create update array with [maxLevel]
skip_list_node* update[5 +1];
//dedicate memory for the update array
memset(update, 0, sizeof(skip_list_node*) * (maxLevel + 1));
//traverse through the skiplist, starting at the highest level to the lowest
for (int i = level; i >= 1; i--)
{
while (x->forward[i] != nullptr && x->forward[i]->key < Key)
{
x = x->forward[i];
}
update[i] = x;
}
x = x->forward[1];
if (x == nullptr || x->key != Key)
{
// Generate a random level for node
int newLevel= randomLevel();
// if our new level is > then the highest level in the list,
//initialize update for further use
if (newLevel > level)
{
for (int i = level + 1; i < newLevel + 1; ++i)
{
update[i] = header;
}
level = newLevel;
}
// create new node to be inserted
x = newNode(Key, newLevel, s);
// insert node by rearranging pointers
for (int i = 1; i <= newLevel; i++)
{
x->forward[i] = update[i]->forward[i];
update[i]->forward[i] = x;
}
inserted = true;
}
return inserted;
}
//removes key if key is present
bool skip_list::remove(int Key)
{
bool removed = false;
if (!isPresent(Key))
{
return removed;
}
//x is the current node
skip_list_node* x = header;
//create update array with [maxLevel + 1]
skip_list_node* update[5 + 1];
//set aside memory for the update array
memset(update, 0, sizeof(skip_list_node*) * (maxLevel + 1));
//traverse the skiplist
for (int i = level; i >= 1; i--)
{
while (x->forward[i] != nullptr && x->forward[i]->key < Key)
x = x->forward[i];
update[i] = x;
}
x = x->forward[1];
if (x != nullptr && x->key == Key)
{
for (int i = 1; i <= level; i++)
{
if (update[i]->forward[i] != x)
break;
update[i]->forward[i] = x->forward[i];
}
//delete the node
delete x;
//adjusts levels accordingly
while (level > 1 && header->forward[level] == header)
{
level = level - 1;
}
removed = true;
}
return removed;
};
//searches skiplist to see is Key exists
bool skip_list::isPresent(int Key)
{
bool found = false;
// node x is the current node
skip_list_node* x = header;
for (int i = level; i >= 1; i--)
{
while (x->forward[i] != nullptr && x->forward[i]->key < Key)
x = x->forward[i];
}
x = x->forward[1];
// if the current node's key is equal to the desired key, it is present
if (x != nullptr && x->key == Key)
found = true;
return found;
};
//searches the skiplist and returns the value of the key if present
std::string skip_list::find(int Key)
{
std::string found = "";
if (!isPresent(Key))
{
return found;
}
else
{
//traverse list to find node with correct key
skip_list_node* x = header;
for (int i = level; i >= 1; i--)
{
while (x->forward[i] != nullptr && x->forward[i]->key < Key)
x =x->forward[i];
}
x = x->forward[1];
// we have found the key
if (x != nullptr && x->key == Key)
found = x->val;
}
return found;
}
//prints out the number of members (key, string pairs) in the list
int skip_list::membership()
{
// x is the current node
skip_list_node* x = header;
int nodeCount = 0;
//traverses the array
while (x->forward[1] != nullptr)
{
nodeCount++;
x = x->forward[1];
}
return nodeCount;
}
// prints all elements in increasing key order, with their associated string values
void skip_list::listAll()
{
//x is the current node
skip_list_node* x = header;
while (x->forward[1] != nullptr)
{
std::cout << x->forward[1]->key << " " << x->forward[1]->val << "\n";
x = x->forward[1];
}
}
// prints all elements in increasing key order, with their associated levels
void skip_list::debugList()
{
// x is the current node
skip_list_node* x = header;
while (x->forward[1] != nullptr)
{
std::cout << x->forward[1]->key << " " << getlevel(x->forward[1]->key) << "\n";
x = x->forward[1];
}
}
//gets the level of a given node
int skip_list::getlevel(int Key)
{
//x is the current node
skip_list_node* x = header;
//the node level that will be returned
int returnLevel = 1;
//traverse through the skiplist
for (int i = level; i >= 1; i--)
{
while (x->forward[i] != nullptr && x->forward[i]->key < Key)
{
x = x->forward[i];
}
// if we have found the correct key, then i is the associated level
if (x->forward[i] != nullptr && x->forward[i]->key == Key)
{
returnLevel = i;
break;
}
}
return returnLevel;
}
//main function with menu to accept commands from input file
int main()
{
//initialize random seed
srand((unsigned)time(0));
// file to read
std::ifstream myfile;
myfile.open("SkipListData.txt");
//variables necessary for commands
skip_list lst;
std::string val;
char command;
int key;
std::string find;
while (myfile >> command)
{
switch (command)
{
case 'A':
myfile >> key >> val;
if (lst.insert(key, val))
{
std::cout << val << " inserted" << "\n";
}
else
{
std::cout << "Key " << key << " already exists" << "\n";
}
break;
case 'D':
myfile >> key;
if (lst.remove(key))
{
std::cout << "Key " << key << " deleted" << "\n";
}
else
{
std::cout << "Key " << key << " not found" << "\n";
}
break;
case 'S':
myfile >> key;
find = lst.find(key);
if (find == "")
{
std::cout << "Key " << key << " not found" << "\n";
}
else
{
std::cout << "Key " << key << " found, value " << find << "\n";
}
break;
case 'M':
std::cout << "Membership is "<< lst.membership() << "\n";
break;
case 'L':
lst.listAll();
break;
case 'T':
lst.debugList();
break;
case 'E':
exit;
}
}
myfile.close();
return 0;
}