blob: 2bf29a6d33d34c7bb38c420f6560e1aadcf2c126 (
plain) (
blame)
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
|
#include <stdio.h>
#include <time.h>
#include "common.h"
#include "structs.h"
#include "nem_ull.h"
int main(int argc, char * argv[]){
struct data * d;
struct front_item * b;
if(argc!=2){
printf("Wrong number of arguments!\n");
printf("Example usage: %s data_file\n",argv[0]);
return 0;
}
d = input(argv[1]);
clock_t t = clock();
b = nem_ull(d);
t = clock() - t;
printf("%f,%d\n",((float)t)/CLOCKS_PER_SEC,len_front(b));
print_front(b);
free_front(b);
free_data(d);
return 0;
}
|