summaryrefslogtreecommitdiff
path: root/src/components/node_components.c
blob: 33477f67c0c09a34f67921877c1730b8084919c6 (plain)
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
/**
 *  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/>.
 *
 *  (c) Vincenzo Nicosia 2009-2017 -- <v.nicosia@qmul.ac.uk>
 * 
 *  This file is part of NetBunch, a package for complex network
 *  analysis and modelling. For more information please visit:
 *
 *             http://www.complex-networks.net/
 *
 *  If you use this software, please add a reference to 
 *
 *               V. Latora, V. Nicosia, G. Russo             
 *   "Complex Networks: Principles, Methods and Applications"
 *              Cambridge University Press (2017) 
 *                ISBN: 9781107103184
 *
 ***********************************************************************
 *
 *  This program computes (the size of) all the components associated
 *  to a node, namely the OUT-, IN-, SCC (strongly connected
 *  component), and the WCC (weekly connected component).
 *
 *
 */

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#include "utils.h"

#define COMP_IN 0x01
#define COMP_OUT 0x02
#define COMP_WCC 0x04
#define COMP_SCC 0x08
#define COMP_ALL (COMP_IN | COMP_OUT | COMP_WCC | COMP_SCC)


void usage(char *argv[]){
  printf("********************************************************************\n"
         "**                                                                **\n"
         "**                   -*-  node_components  -*-                    **\n"
         "**                                                                **\n"
         "**   Find all the components associated to a node of a directed   **\n"
         "**   graph, namely the IN-, OUT-, SCC, and WCC, and print on      **\n"
         "**   output their size and/or the list of nodes belonging to      **\n"
         "**   each component. The first parameter 'graph_in' is the name   **\n"
         "**   of the file containing the edge list of the graph.           **\n"
         "**                                                                **\n"
         "**   The second parameter 'node' is the label of the node whose   **\n"
         "**   components we are interested in. The (optional) third        **\n"
         "**   parameter <component> can be one of 'IN', 'OUT', 'INOUT',    **\n"
         "**   'SCC', 'WCC', respectively corresponding to the IN-, OUT-,   **\n"
         "**   IN- and OUT-, strongly connected and weakly connected        **\n"
         "**   component to which 'node'  belongs. If the <component> is    **\n"
         "**   'ALL', the program computes all the components to which      **\n"
         "**   'node' belongs. If no third parameter is provided, all       **\n"
         "**   the components are computed by default.                      **\n"
         "**                                                                **\n"
         "**   If SHOW is given as fourth argument, the list nodes in each  **\n"
         "**   component is dumped on output as well.                       **\n"
         "**                                                                **\n"
         "********************************************************************\n"
         " This is Free Software - You can use and distribute it under \n"
         " the terms of the GNU General Public License, version 3 or later\n\n"
         " Please visit http://www.complex-networks.net for more information\n\n"
         " (c) Vincenzo Nicosia 2010-2017 (v.nicosia@qmul.ac.uk)\n"
         "********************************************************************\n\n"
         );
  printf("Usage: %s <graph_in> <node> [<component> [SHOW]]\n\n" , argv[0]);
}

int dfs(unsigned int i, unsigned int *J_slap, unsigned int *r_slap, 
        unsigned int N, unsigned int nc, 
        unsigned int *ic, unsigned int *f, 
        char reset){
  
  static unsigned int time = 0;
  unsigned int j, s;
  
  if(reset){
    time = 0;
  }
  
  ic[i] = nc;
  s = 1;
  
  for(j=r_slap[i]; j<r_slap[i+1]; j++){
    if (ic[J_slap[j]] == 0){
      s += dfs(J_slap[j], J_slap, r_slap, N, nc, ic, f, 0);
    }
  }
  f[time] = i;
  time += 1;
  return s;
}



/**
 * 
 * Find all the components of the given graph
 *
 */

int components(unsigned int *J_slap, unsigned int *r_slap,
                unsigned int N, unsigned int **ic, 
                unsigned int **f, unsigned int **sizes){

  unsigned int nc, s;
  unsigned int i;

  *ic = malloc(N * sizeof(unsigned int));
  *f = malloc(N * sizeof(unsigned int));
  *sizes = malloc((N+1) * sizeof(unsigned int));
  
  for(i=0; i<N; i++){
    (*ic)[i] = 0;
    (*f)[i] = 0;
  }
  nc = 0;
  for(i=0; i<N; i++){
    while( i < N && (*ic) [i] != 0 )
      i += 1;
    if (i == N)
      break;
    nc += 1;
    if (nc ==1){
      s = dfs(i, J_slap, r_slap, N, nc, *ic, *f, 1);
    }
    else{
      s = dfs(i, J_slap, r_slap, N, nc, *ic, *f, 0);
    }

    (*sizes)[nc] = s;
  }
  return nc;
}



int components_rev(unsigned int *J_slap, unsigned int *r_slap,
                   unsigned int N, unsigned int **ic, 
                   unsigned int *f, unsigned int **f_T, unsigned int **sizes){
  
  unsigned int nc, s;
  unsigned int  idx;
  int i;
  
  *ic = malloc(N * sizeof(unsigned int));
  *f_T = malloc(N * sizeof(unsigned int));
  *sizes = malloc(N * sizeof(unsigned int));
  
  for(i=0; i<N; i++){
    (*ic)[i] = 0;
  }
  nc = 0;
  for(i=N-1; i>=0; i--){
    idx = f[i];
    while( (*ic) [idx] != 0 && i > 0 ){
      i -= 1;
      idx = f[i];
    }
    if (i == 0)
      break;
    nc += 1;
    if (nc == 1){
      s = dfs(idx, J_slap, r_slap, N, nc, *ic, *f_T, 1);
    }
    else{
      s = dfs(idx, J_slap, r_slap, N, nc, *ic, *f_T, 1);
    }
    (*sizes)[nc] = s;
  }
  return nc;
}


void compute_comp_out(FILE *filein, unsigned int node, char show){
  
  unsigned int N, K, size, i;
  unsigned int *J_slap, *r_slap, *ic, *f, *I, *J;

  I = J = NULL;
  K = read_ij(filein, &I, &J);
  rewind(filein);

  J_slap =  NULL;
  r_slap =  NULL;
  /* obtain the SLAP representation of the graph */
  N = convert_ij2slap(I, J, K, &r_slap, &J_slap);
  
  ic = malloc(N * sizeof(unsigned int));
  f = malloc(N * sizeof(unsigned int));
  for(i=0; i<N; i++){
    ic[i] = 0;
  }


  size = dfs(node, J_slap, r_slap, N, 1, ic, f, 1);
  
  printf("OUT: %d", size);
  if (show){
    for(i=0; i<N; i++){
      if (ic[i] == 1){
        printf(" %d", i);
      }
    }
  }
  printf("\n");
  free(ic);
  free(f);
  free(I);
  free(J);
  free(J_slap);
  free(r_slap);
}

void compute_comp_in(FILE *filein, unsigned int node, char show){

  unsigned int  N, K, size, i;
  unsigned int *J_slap, *r_slap, *ic, *f, *I, *J;

  I = J = NULL;
  
  K = read_ij(filein, &I, &J);
  rewind(filein);
  
  J_slap =  NULL;
  r_slap =  NULL;
  /* obtain the SLAP representation of the graph */
  N = convert_ij2slap(J, I, K, &r_slap, &J_slap);

  
  ic = malloc(N * sizeof(unsigned int));
  f = malloc(N * sizeof(unsigned int));
  for(i=0; i<N; i++){
    ic[i] = 0;
  }


  size = dfs(node, J_slap, r_slap, N, 1, ic, f, 1);
  
  printf("IN: %d", size);
  if (show){
    for(i=0; i<N; i++){
      if (ic[i] == 1){
        printf(" %d", i);
      }
    }
  }
  printf("\n");
  free(ic);
  free(f);
  free(I);
  free(J);
  free(J_slap);
  free(r_slap);
}




void compute_wcc(FILE *filein, unsigned int node, char show){
  
  unsigned int N, K;
  unsigned int *J_slap, *r_slap;
  unsigned int *ic, *f, *sizes;
  unsigned int j, node_comp;
  

  read_slap(filein, &K, &N, &J_slap, &r_slap);

  rewind(filein);
  
  components(J_slap, r_slap, N, &ic, &f, &sizes);
  
  node_comp = ic[node];
  
  printf("WCC: %d", sizes[node_comp]);
  if (show){
    //printf(": ");
    for(j=0; j<N; j++){
      if (ic[j] == node_comp){
        printf(" %d", j);
      }
    }
    printf("\n");
  }
  else{
    printf("\n");
  }
  free(sizes);
  free(J_slap);
  free(r_slap);
  free(ic);
  free(f);
}

void compute_scc(FILE *filein, unsigned int node, char show){

  unsigned int N, K, N1, N2;
  unsigned int *I, *J, *J_slap, *r_slap, *J_slap_T, *r_slap_T;
  unsigned int *ic, *f, *ic_T, *f_T, *sizes_T, *sizes;
  unsigned int j;
  unsigned int node_comp;

  

  I = J = NULL;
  K = read_ij(filein, &I, &J);

  rewind(filein);
    
  
  J_slap = J_slap_T = NULL;
  r_slap = r_slap_T = NULL;
  /* obtain the SLAP representation of the graph */
  N1 = convert_ij2slap(I, J, K, &r_slap, &J_slap);
  /* obtain the SLAP representation of the transposed graph */
  N2 = convert_ij2slap(J, I, K, &r_slap_T, &J_slap_T);
  N = N1 >= N2 ? N1 : N2;
  
  components(J_slap, r_slap, N, &ic, &f, &sizes);
  components_rev(J_slap_T, r_slap_T, N, &ic_T, f, &f_T, &sizes_T);
  
  node_comp = ic_T[node];
  
  
  printf("SCC: %d", sizes_T[node_comp]);
  if (show){
    for(j=0; j<N; j++){
      if (ic_T[j] == node_comp){
        printf(" %d", j);
      }
    }
    printf("\n");
  }
  else{
    printf("\n");
  }
  free(sizes);
  free(sizes_T);
  free(I);
  free(J);
  free(J_slap);
  free(r_slap);
  free(J_slap_T);
  free(r_slap_T);
  free(ic);
  free(ic_T);
  free(f);
  free(f_T);
}



int main(int argc, char *argv[]){

  unsigned int mode=0, node;
  FILE *filein;
  char show = 0;

  
  if (argc < 3){
    usage(argv);
    exit(1);
  }

  filein = openfile_or_exit(argv[1], "r", 2);

  node = atoi(argv[2]);
  
  
  if (argc < 4){
    mode = COMP_ALL;
  }
  else{
    if (!my_strcasecmp("IN", argv[3])){
      mode |= COMP_IN;
    }
    else  if (!my_strcasecmp("OUT", argv[3])){
      mode |= COMP_OUT;
    }
    else  if (!my_strcasecmp("INOUT", argv[3])){
      mode |= COMP_OUT | COMP_IN;
    }
    else  if (!my_strcasecmp("WCC", argv[3])){
      mode |= COMP_WCC;
    }
    else  if (!my_strcasecmp("SCC", argv[3])){
      mode |= COMP_SCC;
    }
    else  if (!my_strcasecmp("ALL", argv[3])){
      mode |= COMP_ALL;
    }
  }

  if (argc > 4 && !my_strcasecmp("SHOW", argv[4])){
    show = 1;
  }

  
  switch(mode){
  case COMP_IN:
    compute_comp_in(filein, node, show);
    break;
  case COMP_OUT:
    compute_comp_out(filein, node, show);
    break;
  case COMP_IN | COMP_OUT:
    compute_comp_in(filein, node, show);
    compute_comp_out(filein, node, show);
    break;
  case COMP_WCC:
    compute_wcc(filein, node, show);
    break;
  case COMP_SCC:
    compute_scc(filein, node, show);
    break;
  default:
    compute_comp_in(filein, node, show);
    compute_comp_out(filein, node, show);
    compute_wcc(filein, node, show);
    compute_scc(filein, node, show);
  };
  fclose(filein);
  
}