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
|
/**
*
* Get the degree distributions of two layers and a pairing, and dump
* on output the pairs k-q
*
*
*/
#include <stdio.h>
#include <stdlib.h>
void dump_k_q(double *R1, double *R2, int N, int *pairing){
int i;
for (i=0; i<N; i++){
printf("%g %g\n", R1[i], R2[pairing[i]]);
}
}
int main(int argc, char *argv[]){
int N1, N2;
double *R1 = NULL;
double *R2 = NULL;
int *pairing = NULL;
if (argc < 4){
printf("Usage: %s <degs1> <degs2> <pairing>\n", argv[0]);
exit(1);
}
load_ranking(argv[1], &N1, &R1);
load_ranking(argv[2], &N2, &R2);
if (N1 != N2){
printf("Error!!!! The two files must have the same number of lines!!!! Exiting...\n");
exit(1);
}
pairing = malloc(N1 * sizeof(int));
load_pairing(&pairing, N1, argv[3]);
dump_k_q(R1, R2, N1, pairing);
}
|