-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnngraph.cpp
500 lines (417 loc) · 12.5 KB
/
nngraph.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
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
// int HeapCmp1(void *a, void *b, void *info) {
// float diff = (((gNode *)a)->nearest_dist - ((gNode *)b)->nearest_dist);
// return (diff > 0 ? 1 : diff == 0 ? 0 : -1);
// }
// #define HeapCmp(a, b, c) HeapCmp1(a, b, c)
/*void addNode();*/
/*void removeNode();*/
/*void addNeighbor();*/
/*void removeNeighbor();*/
/*void hasNeighbor();*/
/*void nng_add_neighbor(nnGraph* g, int id, int neighbor) {*/
/*add_neighbor(g->nodes[id]->neighbors, neighbor);*/
/*}*/
nnGraph *init_nnGraph(int numNodes) {
int maxNeighbors = 200;
nnGraph *g = (nnGraph *)malloc(sizeof(nnGraph));
g->nodes = (gNode *)malloc(sizeof(gNode) * numNodes);
auto cmp = [](gItem *a, gItem *b) { return a->id < b->id; };
for (int i = 0; i < numNodes; i++) {
/*g->nodes[i].neighbors = (gItem*) malloc(sizeof(gItem)*maxNeighbors);*/
g->nodes[i].size = 0;
g->nodes[i].weight = 1;
g->nodes[i].outdated = 0;
g->nodes[i].internalSum = 0.0;
g->nodes[i].id = i;
g->nodes[i].visited = -1;
g->nodes[i].maxNeighbors = maxNeighbors;
// g->nodes[i].neighbors = initLinkedList();
g->nodes[i].nset = new std::set<gItem *, custom_compare>;
g->nodes[i].nearesth = new giHeap();
g->nodes[i].stash = new std::vector<int>;
g->nodes[i].stash->push_back(i);
// gItem*
}
g->size = numNodes;
return g;
}
void dealloc_nnGraph(nnGraph *g) {
// nnGraph *g = (nnGraph *)malloc(sizeof(nnGraph));
// g->nodes = (gNode *)malloc(sizeof(gNode) * numNodes);
for (int i = 0; i < g->size; i++) {
for (auto gi : *(g->nodes[i].nset)) {
free(gi);
}
delete g->nodes[i].stash;
delete g->nodes[i].nearesth;
delete g->nodes[i].nset;
}
free(g->nodes);
free(g);
}
gItem *nng_add_mutual_neighbor2(nnGraph *g, int p1, int p2, float dist) {
gNode *node = &g->nodes[p1];
/*gItem* neighbors = node->neighbors;*/
assert(p1 != p2);
gItem *gi_p1 = (gItem *)malloc(sizeof(gItem));
gItem *gi_p2 = (gItem *)malloc(sizeof(gItem));
gi_p1->cost = -1;
gi_p1->visited = -1;
gi_p1->heapp = -1;
gi_p2->cost = -1;
gi_p2->visited = -1;
gi_p2->heapp = -1;
float cost;
int visited;
gItem *pair;
int heapp; // Pointer to heap position
gi_p1->visited = 0;
gi_p2->visited = 0;
gi_p1->id = p2;
gi_p1->dist = dist;
gi_p2->id = p1;
gi_p2->dist = dist;
gi_p2->pair = gi_p1;
gi_p1->pair = gi_p2;
auto iter1 = g->nodes[p1].nset->insert(gi_p1);
auto iter2 = g->nodes[p2].nset->insert(gi_p2);
// Insertion took place
if (iter1.second) {
gi_p1->iterO = iter2.first;
gi_p2->iterO = iter1.first;
} else {
free(gi_p1);
free(gi_p2);
}
return gi_p1;
}
void nng_add_neighbor(nnGraph *g, int p1, int p2, float dist) {
gNode *node = &g->nodes[p1];
/*gItem* neighbors = node->neighbors;*/
gItem *gi = (gItem *)malloc(sizeof(gItem));
/*gItem* gi = &node->neighbors[node->size];*/
gi->id = p2;
gi->dist = dist;
// printf("dist2=%f\n",gi->dist);
g->nodes[p1].nset->insert(gi);
// ll_remove_node(g->nodes[p1].neighbors, p2);
// ll_add_node(node->neighbors, (void *)gi);
/*ll_add_node_if_not_exist(node->neighbors,(void*) gi);*/
node->size++;
}
void nng_add_mutual_neighbor(nnGraph *g, int p1, int p2, float dist) {
nng_add_neighbor(g, p1, p2, dist);
nng_add_neighbor(g, p2, p1, dist);
}
void nng_remove_neighbor(nnGraph *g, int p1, int p2) {
// ll_remove_node2(g->nodes[p1].neighbors, p2);
gItem *gi = (gItem *)malloc(sizeof(gItem));
gi->id = p2;
auto it = g->nodes[p1].nset->find(gi);
if (it != g->nodes[p1].nset->end()) {
g->nodes[p1].nset->erase(it);
free(*it);
}
// free(gi); //TODO
// g->nodes[p1].nset->insert(gi);
/*node->size--;*/
}
// int nng_has_neighbor(nnGraph *g, int p1, int p2) {
// gItem *gi = NULL;
// gItem *neighbor = ll_get_node_if_exist(g->nodes[p1].neighbors, p2);
// if (neighbor == NULL) {
// return 0;
// }
// return 1;
// }
int nng_has_neighbor(nnGraph *g, int p1, int p2) {
gItem *gi = (gItem *)malloc(sizeof(gItem));
gi->id = p2;
auto it = g->nodes[p1].nset->find(gi);
int ret = 0;
if (it != g->nodes[p1].nset->end()) {
ret = 1;
}
free(gi);
return ret;
}
gItem *nng_get_neighbor(nnGraph *g, int p1, int p2) {
gItem *gi = (gItem *)malloc(sizeof(gItem));
gi->id = p2;
auto it = g->nodes[p1].nset->find(gi);
gItem *ret = NULL;
if (it != g->nodes[p1].nset->end()) {
ret = *it;
}
// std::cout << "decltype(it) is " << type_name<decltype(it)>() << '\n';
// std::cout << "decltype(it) is " << type_name<decltype(*it)>() << '\n';
free(gi);
// return gi;
return ret;
}
// https://thispointer.com/how-to-access-element-by-index-in-a-set-c/
template <typename T> std::pair<T, bool> getNthElement(std::set<T> &searchSet, int n) {
std::pair<T, bool> result;
if (searchSet.size() > n) {
result.first = *(std::next(searchSet.begin(), n));
result.second = true;
} else
result.second = false;
return result;
}
gItem *nng_get_neighbor2(nnGraph *g, int p1, int idx) {
// gItem *gi = (gItem *)ll_get_item(g->nodes[p1].neighbors, idx);
// std::pair<gItem *, bool> result = getNthElement(*(g->nodes[p1].nset), 3);
gItem *gi = *(std::next(g->nodes[p1].nset->begin(), idx));
return gi;
}
// int nng_get_neighbor(nnGraph *g, int p1, int idx) {
// gItem *gi = (gItem *)ll_get_item(g->nodes[p1].neighbors, idx);
// return gi->id;
// }
int nng_num_neighbors(nnGraph *g, int p1) { return g->nodes[p1].neighbors->size; }
void write_nngraph_to_file(nnGraph *g, const char *fn) {
FILE *fp;
fp = fopen(fn, "w");
gNode *node;
for (int i = 0; i < g->size; i++) {
node = &g->nodes[i];
int num_neigh = node->nset->size();
fprintf(fp, "%d %d", node->id, num_neigh);
for (int j = 0; j < num_neigh; j++) {
// gItem *gi = (gItem *)ll_get_item(node->neighbors, j);
gItem *gi = nng_get_neighbor2(g, i, j);
fprintf(fp, " %d", gi->id);
}
for (int j = 0; j < num_neigh; j++) {
// gItem *gi = (gItem *)ll_get_item(node->neighbors, j);
gItem *gi = nng_get_neighbor2(g, i, j);
fprintf(fp, " %f", gi->dist);
}
fprintf(fp, "\n");
}
fclose(fp);
}
void write_nngraph_to_file_old(nnGraph *g, const char *fn) {
FILE *fp;
fp = fopen(fn, "w");
gNode *node;
for (int i = 0; i < g->size; i++) {
node = &g->nodes[i];
fprintf(fp, "%d %d", node->id, node->neighbors->size);
for (int j = 0; j < node->neighbors->size; j++) {
// gItem *gi = (gItem *)ll_get_item(node->neighbors, j);
gItem *gi = nng_get_neighbor2(g, i, j);
fprintf(fp, " %d", gi->id);
}
for (int j = 0; j < node->neighbors->size; j++) {
// gItem *gi = (gItem *)ll_get_item(node->neighbors, j);
gItem *gi = nng_get_neighbor2(g, i, j);
fprintf(fp, " %f", gi->dist);
}
fprintf(fp, "\n");
}
fclose(fp);
}
gItem *find_greedy_path(DataSet *data, nnGraph *g, int source, int target) {
gNode *node;
node = &g->nodes[source];
gItem *ti = ll_get_node_if_exist(g->nodes[source].neighbors, target);
float d_ab;
if (ti == NULL) {
d_ab = distance(data, source, target);
/*terminal_error("ll_get_node_if_exist");*/
} else {
d_ab = ti->dist;
}
for (int j = 0; j < node->neighbors->size; j++) {
gItem *gi = (gItem *)ll_get_item(node->neighbors, j);
if (gi->id == target) {
continue;
}
gItem *neighbor = ll_get_node_if_exist(g->nodes[gi->id].neighbors, target);
if (neighbor == NULL) {
/*printf("nn:NULL ");*/
}
if (neighbor != NULL) {
/*printf("nn:%d %f, ",neighbor->id,neighbor->dist);*/
if (d_ab > neighbor->dist) {
return neighbor;
}
}
}
return NULL;
}
gItem *find_greedy_path2(DataSet *data, nnGraph *g, int source, int target) {
gNode *node;
node = &g->nodes[source];
gItem *ti = ll_get_node_if_exist(g->nodes[source].neighbors, target);
float d_ab;
if (ti == NULL) {
d_ab = distance(data, source, target);
/*terminal_error("ll_get_node_if_exist");*/
} else {
d_ab = ti->dist;
}
float prevdist = d_ab;
for (int j = 0; j < node->neighbors->size; j++) {
gItem *gi = (gItem *)ll_get_item(node->neighbors, j);
if (gi->id == target) {
continue;
}
/*float cb = distance(data,gi->id,target);*/
/*if(cb < prevdist) {*/
/*return gi;*/
/*}*/
gItem *neighbor = ll_get_node_if_exist(g->nodes[gi->id].neighbors, target);
if (neighbor == NULL) {
/*printf("nn:NULL ");*/
}
if (neighbor != NULL) {
/*printf("nn:%d %f, ",neighbor->id,neighbor->dist);*/
if (d_ab > neighbor->dist) {
return neighbor;
}
}
}
return NULL;
}
void test_nn_graph() {
nnGraph *g = init_nnGraph(100);
nng_add_neighbor(g, 0, 99, 2.0);
nng_add_neighbor(g, 0, 10, 2.0);
nng_add_neighbor(g, 0, 20, 2.0);
nng_add_neighbor(g, 0, 7, 2.0);
nng_add_neighbor(g, 0, 90, 2.0);
nng_add_neighbor(g, 0, 70, 2.0);
nng_add_neighbor(g, 0, 77, 2.0);
// nng_remove_neighbor(g,0,90);
nng_remove_neighbor(g, 0, 99);
nng_remove_neighbor(g, 0, 77);
nng_remove_neighbor(g, 0, 10);
// for(int i=0;i<6;i++) {
printf("n=%d\n", nng_num_neighbors(g, 0));
fflush(stdout);
for (int i = 0; i < nng_num_neighbors(g, 0); i++) {
// printf(" %d", nng_get_neighbor(g, 0, i));
}
printf(" | ");
for (int i = 0; i < nng_num_neighbors(g, 0); i++) {
gItem *gi = nng_get_neighbor2(g, 0, i);
printf(" %d", gi->id);
}
printf(" | ");
for (auto gi : *(g->nodes[0].nset)) {
printf(" %d", gi->id);
// use f here
}
printf("\n");
}
nnGraph *read_ascii_graphf2(const char *fname, int clist, std::map<std::string, int> **cdmap) {
std::string line;
std::string delim = " ";
std::ifstream infile(fname);
DataSet *sd = (DataSet *)malloc(sizeof(DataSet));
// sd->strings = new vector<string>;
// sd->type = T_SET; // String data
int numLines = 0;
int numItems = 0;
int buf[1000000];
// std::map<std::string, int> m;
// std::map<std::string, int> code_to_id;
std::map<std::string, int> *code_to_id = new std::map<std::string, int>;
std::map<int, std::string> id_to_code;
std::stringstream ss(line);
std::string item;
int id = -1;
// sd->size = 0;
int numlines=0;
while (std::getline(infile, line)) {
numlines++;
}
infile.clear();
infile.seekg(0, ios::beg);
printf("Num lines: %d\n", numlines);
int N = numlines - 1;
// sd->bigrams = (int **)malloc(sizeof(int *) * sd->size);
// sd->setSize = (int *)malloc(sizeof(int) * sd->size);
// while (std::getline(infile, line)) {
int show_sets = 1;
nnGraph *graph = init_nnGraph(N);
// Read first line which contains the names/codes of the set items
// Convert to int id's
safeGetline(infile, line);
{
std::stringstream ss(line);
std::string item;
int id = -1;
int setSize = 0;
while (std::getline(ss, item, ' ')) {
if (item.size() < 1) {
continue;
}
if ((*code_to_id).find(item) == (*code_to_id).end()) {
(*code_to_id)[item] = numItems;
id_to_code[numItems] = item;
numItems++;
} else {
}
id = (*code_to_id)[item];
// if (show_sets) {
// cout << " word: '" << item << "' mapping:" << id << endl;
// }
buf[setSize] = id;
setSize++;
}
}
while (safeGetline(infile, line)) {
vector<int> links;
vector<float> weights;
if (line.size() <= 1) {
continue;
}
std::stringstream ss(line);
std::string item;
std::getline(ss, item, ' ');
// if (item.size() < 1) {
// continue;
// }
int id = stoi(item);
std::getline(ss, item, ' ');
int numlinks = stoi(item);
// printf("id=%d numlinks=%d ", id, numlinks);
for (int i = 0; i < numlinks; i++) {
std::getline(ss, item, ' ');
int neighborid = stoi(item);
// printf("%d ", neighborid);
// links[i] = neighborid;
links.push_back(neighborid);
}
for (int i = 0; i < numlinks; i++) {
std::getline(ss, item, ' ');
float weight = stof(item);
// weights[i] = weight;
weights.push_back(weight);
// printf("%f ", weight);
}
// printf("numw=%d\n",weights.size());
for (int i = 0; i < numlinks; i++) {
// printf("add link: [%d] = (%f)> [%d]\n", id, weights[i], links[i]);
if (!nng_has_neighbor(graph, id, links[i])) {
nng_add_neighbor(graph, id, links[i], weights[i]);
}
if (!nng_has_neighbor(graph, links[i], id)) {
nng_add_neighbor(graph, links[i], id, weights[i]);
}
}
}
// printf("##F43:%d\n",(*cdmap)[string("F43")]);
printf("#Z#F43:%d\n", (*code_to_id)[string("F43")]);
if (cdmap != NULL) {
// cdmap = &code_to_id;
// cdmap = code_to_id;
*cdmap = code_to_id;
}
// printf("##F43:%d\n",(**cdmap)[string("F43")]);
return graph;
}